mirror of
https://github.com/chrislusf/seaweedfs
synced 2025-06-29 16:22:46 +02:00
27 lines
638 B
Go
27 lines
638 B
Go
package http
|
|
|
|
import (
|
|
"github.com/seaweedfs/seaweedfs/weed/util/log"
|
|
util_http_client "github.com/seaweedfs/seaweedfs/weed/util/http/client"
|
|
)
|
|
|
|
var (
|
|
globalHttpClient *util_http_client.HTTPClient
|
|
)
|
|
|
|
func NewGlobalHttpClient(opt ...util_http_client.HttpClientOpt) (*util_http_client.HTTPClient, error) {
|
|
return util_http_client.NewHttpClient(util_http_client.Client, opt...)
|
|
}
|
|
|
|
func GetGlobalHttpClient() *util_http_client.HTTPClient {
|
|
return globalHttpClient
|
|
}
|
|
|
|
func InitGlobalHttpClient() {
|
|
var err error
|
|
|
|
globalHttpClient, err = NewGlobalHttpClient()
|
|
if err != nil {
|
|
log.Fatalf("error init global http client: %v", err)
|
|
}
|
|
}
|