Files
2026-06-02 23:14:41 +08:00

12 lines
189 B
Go

package core
import (
"net/http"
"time"
)
// HTTPClient is a shared HTTP client with a reasonable timeout for platform use.
var HTTPClient = &http.Client{
Timeout: 30 * time.Second,
}