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

10 lines
127 B
Go

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