govd/util/http.go
stefanodvx 3faede7b1c Init
2025-04-14 13:05:43 +02:00

14 lines
168 B
Go

package util
import (
"net/http"
"time"
)
var httpSession = &http.Client{
Timeout: 20 * time.Second,
}
func GetHTTPSession() *http.Client {
return httpSession
}