20 lines
322 B
Python
20 lines
322 B
Python
"""Subsonic media endpoints: stream, download, cover art."""
|
|
|
|
from typing import Any
|
|
|
|
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/stream")
|
|
async def stream() -> Any: ...
|
|
|
|
|
|
@router.get("/download")
|
|
async def download() -> Any: ...
|
|
|
|
|
|
@router.get("/getCoverArt")
|
|
async def get_cover_art() -> Any: ...
|