Files
OpenList/bootstrap/client.go

13 lines
214 B
Go
Raw Normal View History

2020-12-24 01:39:45 +08:00
package bootstrap
import (
"github.com/Xhofe/alist/conf"
2020-12-26 18:11:17 +08:00
log "github.com/sirupsen/logrus"
2020-12-24 01:39:45 +08:00
"net/http"
)
2021-02-04 10:02:34 +08:00
// init request client
2020-12-24 01:39:45 +08:00
func InitClient() {
2020-12-26 18:11:17 +08:00
log.Infof("初始化client...")
2020-12-24 01:39:45 +08:00
conf.Client=&http.Client{}
}