yantrabodha-api / api /endpoints /__init__.py
Kethan Dosapati
Add initial implementation of Yantrabodha Article API with FastAPI and Supabase integration
caa70b1
raw
history blame contribute delete
153 Bytes
"""API endpoint routers."""
from .match import router as match_router
from .post import router as post_router
__all__ = ["post_router", "match_router"]