mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-27 19:41:11 +01:00
14 lines
167 B
Go
14 lines
167 B
Go
package widgets
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
var HTTPClient = &http.Client{
|
|
Timeout: 10 * time.Second,
|
|
}
|
|
|
|
var ErrHTTPStatus = errors.New("http status")
|