通用包
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
utils/transport/v1/http/transport.go

26 lines
427 B

package http
import (
"gitea.drugeyes.vip/pharnexbase/utils/enum"
)
type Transport struct {
env enum.Env // 环境
sm4Key string // sm4Key
apiKey string // apiKey
}
func NewTransport(env enum.Env, args ...string) *Transport {
var sm4Key, apiKey string
if len(args) > 1 {
sm4Key = args[0]
}
if len(args) > 2 {
apiKey = args[1]
}
return &Transport{
env: env,
sm4Key: sm4Key,
apiKey: apiKey,
}
}