mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-08-17 04:03:57 +08:00
28 lines
802 B
Python
28 lines
802 B
Python
"""插件可使用的宿主服务发现与运行时门面。"""
|
|
|
|
from app.runtime.extensions.service_registry import ServiceBaseHelper, ServiceConfigHelper
|
|
from app.runtime.state import SystemHelper
|
|
from app.application.downloader import DownloaderHelper
|
|
from app.application.filter import RuleHelper
|
|
from app.application.mediaserver import (
|
|
MediaServerIdentityHelper,
|
|
MediaServerHelper,
|
|
MusicMediaServerHelper,
|
|
)
|
|
from app.application.storage import StorageHelper
|
|
from app.application.notification import NotificationHelper
|
|
|
|
|
|
__all__ = [
|
|
"DownloaderHelper",
|
|
"MediaServerHelper",
|
|
"MediaServerIdentityHelper",
|
|
"MusicMediaServerHelper",
|
|
"NotificationHelper",
|
|
"RuleHelper",
|
|
"ServiceBaseHelper",
|
|
"ServiceConfigHelper",
|
|
"StorageHelper",
|
|
"SystemHelper",
|
|
]
|