Browse Source

add trakt config

Denmaseno 8 năm trước cách đây
mục cha
commit
8ed6ceaa6d
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  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"`