13 lines
215 B
Go
13 lines
215 B
Go
|
package domain
|
||
|
|
||
|
type API struct {
|
||
|
Password string `yaml:"password"`
|
||
|
Token string `yaml:"token"`
|
||
|
URL string `yaml:"url"`
|
||
|
Username string `yaml:"username"`
|
||
|
}
|
||
|
|
||
|
type Config struct {
|
||
|
API *API `yaml:"api"`
|
||
|
}
|