gospt/internal/config/config.go

9 lines
217 B
Go
Raw Normal View History

2023-01-07 07:40:39 +00:00
package config
var Values struct {
2023-01-10 21:38:28 +00:00
ClientId string `yaml:"client_id"`
ClientSecret string `yaml:"client_secret"`
ClientSecretCmd string `yaml:"client_secret_cmd"`
2023-01-11 02:01:40 +00:00
Port string `yaml:"port"`
2023-01-07 07:40:39 +00:00
}