8 lines
240 B
Go
8 lines
240 B
Go
package configs
|
|
|
|
type OVHConfig struct {
|
|
Endpoint string `yaml:"endpoint"`
|
|
ApplicationKey string `yaml:"application_key"`
|
|
ApplicationSecret string `yaml:"application_secret"`
|
|
ConsumerKey string `yaml:"consumer_key"`
|
|
}
|