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 {
2024-02-20 01:58:05 +00:00
ClientID string `yaml:"client_id"`
2024-02-18 06:57:47 +00:00
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
}