mirror of
https://github.com/furyhawk/agent_delta.git
synced 2026-07-21 02:05:36 +00:00
10 lines
207 B
Python
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"]
|