tarr/pkg/domain/domain.go

13 lines
215 B
Go
Raw Permalink Normal View History

2024-08-18 18:49:30 +00:00
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"`
}