9 lines
345 B
Python
9 lines
345 B
Python
"""Legacy compatibility shim for Tidal manifest helpers.
|
|
|
|
The active implementation now lives in ``plugins.tidal_manifest`` so the
|
|
plugin namespace owns the manifest helper module. Keep this file only to avoid
|
|
breaking old imports while the legacy ``Provider`` package is phased out.
|
|
"""
|
|
|
|
from plugins.tidal_manifest import * # noqa: F401,F403
|