You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
320 B
Go
13 lines
320 B
Go
package net
|
|
|
|
import (
|
|
"github.com/imroc/req/v3"
|
|
)
|
|
|
|
const userAgent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36 Edg/111.0.0.0"
|
|
|
|
var ReqClient = req.NewClient().
|
|
DisableAutoReadResponse().
|
|
EnableInsecureSkipVerify().
|
|
SetUserAgent(userAgent)
|