28 lines
467 B
Python
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: ...
|