11 lines
237 B
Python
11 lines
237 B
Python
|
|
"""
|
||
|
|
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"]
|