Files
2026-06-06 13:00:01 +03:00

16 lines
313 B
Python

"""Radio / continuous-mix endpoints. Degrades gracefully when ML service is down."""
from typing import Any
from fastapi import APIRouter
router = APIRouter(prefix="/radio", tags=["radio"])
@router.post("")
async def start_radio() -> Any: ...
@router.post("/next")
async def next_radio_track() -> Any: ...