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

24 lines
369 B
Python

"""Subsonic annotation endpoints: star, rating, scrobble."""
from typing import Any
from fastapi import APIRouter
router = APIRouter()
@router.get("/star")
async def star() -> Any: ...
@router.get("/unstar")
async def unstar() -> Any: ...
@router.get("/setRating")
async def set_rating() -> Any: ...
@router.get("/scrobble")
async def scrobble() -> Any: ...