feat: routes

This commit is contained in:
2026-06-06 13:00:01 +03:00
parent 83abcd02dd
commit 87b48e941e
22 changed files with 525 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
"""User settings endpoints, including scrobbling configuration."""
from typing import Any
from fastapi import APIRouter
router = APIRouter(prefix="/settings", tags=["settings"])
@router.get("")
async def get_settings() -> Any: ...
@router.patch("")
async def update_settings() -> Any: ...
@router.get("/scrobbling")
async def get_scrobbling_settings() -> Any: ...
@router.put("/scrobbling")
async def set_scrobbling_settings() -> Any: ...