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
+7
View File
@@ -0,0 +1,7 @@
package mediaprovider
type Server interface {
Ping() bool
Login(username, password string) error
MediaProvider() MediaProvider
}