Initial Commit
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
2024-08-18 20:49:30 +02:00
commit f79b20e8a4
24 changed files with 1921 additions and 0 deletions

11
pkg/domain/bazarr.go Normal file
View File

@ -0,0 +1,11 @@
package domain
const (
BazarrAPIQueryKeyAPIToken string = "apikey"
LidarrAPIQueryKeyAPIToken string = "apiKey"
ProwlarrAPIQueryKeyAPIToken string = "apiKey"
RadarrAPIQueryKeyAPIToken string = "apiKey"
ReadarrAPIQueryKeyAPIToken string = "apiKey"
SabNZBdAPIQueryKeyAPIToken string = "apiKey"
SonarrAPIQueryKeyAPIToken string = "apiKey"
)

12
pkg/domain/domain.go Normal file
View File

@ -0,0 +1,12 @@
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"`
}