http.go 268 B

1234567891011
  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{
  7. GithubProxy: "",
  8. InsecureSkipVerify: false,
  9. }