Adding Sonarr support into the code base.

This commit is contained in:
2020-05-17 21:06:52 -05:00
parent d6ed947bb9
commit 4e846885dd
6 changed files with 342 additions and 29 deletions

View File

@ -16,8 +16,10 @@ type Config struct {
} `json:"telegram"`
Sonarr struct {
URL string `json:"url"`
APIKey string `json:"apiKey"`
URL string `json:"url"`
APIKey string `json:"apiKey"`
SeasonLimit int `json:"seasonLimit"`
ProfileID int `json:"proFileId"`
} `json:"sonarr"`
}