mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 12:42:34 +02:00
14 lines
202 B
Go
14 lines
202 B
Go
package widgets
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/yusing/go-proxy/internal/gperr"
|
|
)
|
|
|
|
var HTTPClient = &http.Client{
|
|
Timeout: 10 * time.Second,
|
|
}
|
|
|
|
var ErrHTTPStatus = gperr.New("http status")
|