12 lines
271 B
Python
12 lines
271 B
Python
"""Provider plugin modules.
|
|
|
|
Concrete provider implementations live in this package.
|
|
The public entrypoint/registry is ProviderCore.registry.
|
|
"""
|
|
|
|
# Register providers with the strict ResultTable adapter system
|
|
try:
|
|
from . import alldebrid
|
|
except Exception:
|
|
pass
|