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

28 lines
467 B
Python

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