beginning of adding Jellyfin support

This commit is contained in:
Drew Weymouth
2023-11-14 09:05:02 -08:00
parent e841793318
commit d948d2d725
8 changed files with 108 additions and 20 deletions
+8
View File
@@ -8,7 +8,15 @@ import (
"github.com/pelletier/go-toml/v2"
)
type ServerType string
const (
ServerTypeSubsonic ServerType = "Subsonic"
ServerTypeJellyfin ServerType = "Jellyfin"
)
type ServerConnection struct {
ServerType ServerType
Hostname string
AltHostname string
Username string