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