"""Playback history endpoints.""" from typing import Any from fastapi import APIRouter router = APIRouter(prefix="/history", tags=["history"]) @router.get("") async def get_history() -> Any: ... @router.post("") async def record_history() -> Any: ...