7 lines
211 B
Python
7 lines
211 B
Python
from app.api.health import router as health_router
|
|
from app.api.stats import router as stats_router
|
|
from app.api.tasks import router as tasks_router
|
|
|
|
__all__ = ["health_router", "stats_router", "tasks_router"]
|
|
|