12 lines
258 B
Python
12 lines
258 B
Python
"""Built-in plugin modules.
|
|
|
|
Concrete built-in plugins live in this package.
|
|
The public registry lives in ProviderCore.registry.
|
|
"""
|
|
|
|
# Register providers with the strict ResultTable adapter system
|
|
try:
|
|
from . import alldebrid
|
|
except Exception:
|
|
pass
|