mirror of
https://github.com/yusing/godoxy.git
synced 2026-04-19 07:30:09 +02: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")
|