mirror of https://github.com/synctv-org/synctv
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
341 B
Go
11 lines
341 B
Go
package flags
|
|
|
|
type ServerFlags struct {
|
|
SkipConfig bool `env:"SKIP_CONFIG"`
|
|
SkipEnvConfig bool `env:"SKIP_ENV_CONFIG"`
|
|
DisableUpdateCheck bool `env:"DISABLE_UPDATE_CHECK"`
|
|
DisableWeb bool `env:"DISABLE_WEB"`
|
|
WebPath string `env:"WEB_PATH"`
|
|
DisableLogColor bool `env:"DISABLE_LOG_COLOR"`
|
|
}
|