gspot/src/config/config.go

11 lines
352 B
Go
Raw Normal View History

2024-02-18 06:57:47 +00:00
package config
type Config struct {
ClientId string `yaml:"client_id"`
ClientSecret string `yaml:"client_secret"`
ClientSecretCmd string `yaml:"client_secret_cmd"`
Port string `yaml:"port"`
2024-02-19 06:17:28 +00:00
LogLevel string `yaml:"log_level" default:"info"`
LogOutput string `yaml:"log_output" default:"stdout"`
2024-02-18 06:57:47 +00:00
}