gspot/src/config/config.go
abs3nt e6344bef01
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
cleanup
2024-02-19 17:58:05 -08:00

11 lines
352 B
Go

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"`
LogLevel string `yaml:"log_level" default:"info"`
LogOutput string `yaml:"log_output" default:"stdout"`
}