1
0

http.go 214 B

12345678
  1. package settings
  2. type HTTP struct {
  3. GithubProxy string `json:"github_proxy" binding:"omitempty,url"`
  4. InsecureSkipVerify bool `json:"insecure_skip_verify" protected:"true"`
  5. }
  6. var HTTPSettings = &HTTP{}