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