mirror of
https://github.com/bestnite/sub2clash.git
synced 2025-06-16 20:23:19 +08:00
13 lines
166 B
Go
13 lines
166 B
Go
package common
|
|
|
|
import (
|
|
"resty.dev/v3"
|
|
)
|
|
|
|
func Request(retryTimes int) *resty.Client {
|
|
client := resty.New()
|
|
client.
|
|
SetRetryCount(retryTimes)
|
|
return client
|
|
}
|