mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-18 09:27:17 +01:00
15 lines
197 B
Go
15 lines
197 B
Go
package widgets
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
gperr "github.com/yusing/goutils/errs"
|
|
)
|
|
|
|
var HTTPClient = &http.Client{
|
|
Timeout: 10 * time.Second,
|
|
}
|
|
|
|
var ErrHTTPStatus = gperr.New("http status")
|