16 lines
258 B
Python
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: ...
|