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
+27
View File
@@ -0,0 +1,27 @@
"""Subsonic playlist endpoints."""
from typing import Any
from fastapi import APIRouter
router = APIRouter()
@router.get("/getPlaylists")
async def get_playlists() -> Any: ...
@router.get("/getPlaylist")
async def get_playlist() -> Any: ...
@router.get("/createPlaylist")
async def create_playlist() -> Any: ...
@router.get("/updatePlaylist")
async def update_playlist() -> Any: ...
@router.get("/deletePlaylist")
async def delete_playlist() -> Any: ...