12 lines
168 B
Python
12 lines
168 B
Python
"""Subsonic search endpoints."""
|
|
|
|
from typing import Any
|
|
|
|
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/search3")
|
|
async def search3() -> Any: ...
|