mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-12 20:45:20 +02:00
12 lines
325 B
Python
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"]
|