9 lines
218 B
Go
9 lines
218 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"`
|
||
|
}
|