Files
godoxy-yusing/internal/homepage/widgets/http.go
2026-02-16 09:04:56 +08:00

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")