Files
PixivFE/utils/http_client.go
iacore c4d8fdb0f0 organize files
add http client with better maxidleconnections
2024-08-28 13:58:51 +00:00

10 lines
127 B
Go

package utils
import "net/http"
var HttpClient = &http.Client{
Transport: &http.Transport{
MaxIdleConnsPerHost: 20,
},
}