commons-go/core/config/proxy.go

10 lines
400 B
Go
Raw Normal View History

2018-04-12 09:54:44 +00:00
package config
type Proxy struct {
2018-04-14 08:56:30 +00:00
Host string `json:"host,omitempty" yaml:"host" toml:"host"`
Port int `json:"port,omitempty" yaml:"port" toml:"port"`
UseAuth bool `default:"false" json:"useAuth,omitempty" yaml:"useAuth" toml:"useAuth"`
User string `json:"user,omitempty" yaml:"user" toml:"user"`
Password string `json:"password,omitempty" yaml:"password" toml:"password"`
2018-04-12 09:54:44 +00:00
}