Improved support for environment variables and configuration files, and standardized default behaviors
7 lines
114 B
Go
7 lines
114 B
Go
package config
|
|
|
|
type Proxy struct {
|
|
Enable bool `mapstructure:"enable"`
|
|
Host string `mapstructure:"host"`
|
|
}
|