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
+47
View File
@@ -0,0 +1,47 @@
"""Subsonic browsing endpoints."""
from typing import Any
from fastapi import APIRouter
router = APIRouter()
@router.get("/getMusicFolders")
async def get_music_folders() -> Any: ...
@router.get("/getIndexes")
async def get_indexes() -> Any: ...
@router.get("/getMusicDirectory")
async def get_music_directory() -> Any: ...
@router.get("/getArtists")
async def get_artists() -> Any: ...
@router.get("/getArtist")
async def get_artist() -> Any: ...
@router.get("/getAlbum")
async def get_album() -> Any: ...
@router.get("/getAlbumList")
async def get_album_list() -> Any: ...
@router.get("/getAlbumList2")
async def get_album_list2() -> Any: ...
@router.get("/getSong")
async def get_song() -> Any: ...
@router.get("/getGenres")
async def get_genres() -> Any: ...