This commit is contained in:
2026-02-03 21:58:25 +01:00
parent 3019bcaf1a
commit 959dad3fec
14 changed files with 1477 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
"""
Routers Package
This package contains all API route handlers organized by feature.
Each router is responsible for a specific domain of the application.
"""
from . import ai, projects, health
__all__ = ["ai", "projects", "health"]