Files
mcma-backend/app/api/v1/search.py
T
2026-06-06 13:00:01 +03:00

16 lines
275 B
Python

"""Search endpoints: global and library-scoped."""
from typing import Any
from fastapi import APIRouter
router = APIRouter(prefix="/search", tags=["search"])
@router.get("")
async def search() -> Any: ...
@router.get("/library")
async def search_library() -> Any: ...