Files
alist/bootstrap/client.go
微凉 e146054679 📝 add notes
2021-02-04 10:02:34 +08:00

13 lines
214 B
Go

package bootstrap
import (
"github.com/Xhofe/alist/conf"
log "github.com/sirupsen/logrus"
"net/http"
)
// init request client
func InitClient() {
log.Infof("初始化client...")
conf.Client=&http.Client{}
}