mirror of
https://github.com/nirvana-7777/script.service.ultimate.git
synced 2026-09-17 14:42:18 +02:00
29 lines
743 B
Python
29 lines
743 B
Python
# streaming_providers/base/models/__init__.py
|
|
from .channel import Channel, StreamingChannel
|
|
from .content import Content, ContentType, StreamingMode
|
|
from .quality import Quality
|
|
from .drm import DRMConfig, DRMSystem, LicenseConfig, LicenseUnwrapperParams
|
|
from .event import Event, EventStatus
|
|
from .subscription import SubscriptionPackage, UserSubscription
|
|
|
|
__all__ = [
|
|
# Content hierarchy
|
|
"Content",
|
|
"Channel",
|
|
"Event",
|
|
# Backward compatibility
|
|
"StreamingChannel",
|
|
# Enums
|
|
"StreamingMode",
|
|
"ContentType",
|
|
"Quality",
|
|
"EventStatus",
|
|
# DRM
|
|
"DRMConfig",
|
|
"LicenseConfig",
|
|
"LicenseUnwrapperParams",
|
|
"DRMSystem",
|
|
# Subscription
|
|
"SubscriptionPackage",
|
|
"UserSubscription",
|
|
] |