SurfSense/surfsense_backend/app/podcasts/api/__init__.py
2026-06-10 18:44:03 +02:00

12 lines
325 B
Python

"""HTTP API for the podcast lifecycle.
The router is mounted at cutover (replacing the legacy podcast routes); it is
kept separate here so it can be wired in one step without colliding with the old
routes during parallel development.
"""
from __future__ import annotations
from .routes import router
__all__ = ["router"]