Files
agent_delta/backend/app/api/routes/__init__.py
T
2026-06-15 14:22:07 +08:00

10 lines
207 B
Python

"""API routes.
This package contains versioned API routes.
Add new versions by creating new folders (e.g., v2/) and updating router.py.
"""
from app.api.routes.v1 import v1_router
__all__ = ["v1_router"]