Files
mcma-backend/app/api/v1/history.py
T
2026-06-06 13:00:01 +03:00

16 lines
258 B
Python

"""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: ...