Explorar o código

add trakt config

Denmaseno %!s(int64=8) %!d(string=hai) anos
pai
achega
8ed6ceaa6d
Modificáronse 1 ficheiros con 7 adicións e 0 borrados
  1. 7 0
      plex.go

+ 7 - 0
plex.go

@@ -20,11 +20,18 @@ type API struct {
 	User     string     `yaml:"user"`
 	Password string     `yaml:"password"`
 	HTTP     HTTPConfig `yaml:"http"`
+	Trakt    Trakt      `yaml:"trakt"`
 	client   *http.Client
 	userInfo UserInfo
 	servers  map[string]*Server
 }
 
+// Trakt struct
+type Trakt struct {
+	ClientID string `yaml:"client-id"`
+	Token    string `yaml:"token"`
+}
+
 // HTTPConfig struct
 type HTTPConfig struct {
 	Timeout    time.Duration `yaml:"timeout"`