mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-03-20 03:57:30 +08:00
17 lines
467 B
Python
17 lines
467 B
Python
from app.helper.servicebase import ServiceBaseHelper
|
|
from app.schemas import MediaServerConf
|
|
from app.schemas.types import SystemConfigKey
|
|
|
|
|
|
class MediaServerHelper(ServiceBaseHelper[MediaServerConf]):
|
|
"""
|
|
媒体服务器帮助类
|
|
"""
|
|
|
|
def __init__(self):
|
|
super().__init__(
|
|
config_key=SystemConfigKey.MediaServers,
|
|
conf_type=MediaServerConf,
|
|
modules=["PlexModule", "EmbyModule", "JellyfinModule"]
|
|
)
|