mirror of
https://github.com/unshackle-dl/unshackle.git
synced 2025-10-23 15:11:08 +00:00
Add new CustomRemoteCDM class to support custom CDM API providers with maximum configurability through YAML configuration alone. This addresses GitHub issue #26 by enabling integration with third-party CDM APIs.
5 lines
160 B
Python
5 lines
160 B
Python
from .custom_remote_cdm import CustomRemoteCDM
|
|
from .decrypt_labs_remote_cdm import DecryptLabsRemoteCDM
|
|
|
|
__all__ = ["DecryptLabsRemoteCDM", "CustomRemoteCDM"]
|