File size: 238 Bytes
67f8819
02569b7
 
 
67f8819
 
1
2
3
4
5
6
7
"""Routes package."""
from api.routes.tasks import router as tasks_router
from api.routes.health import router as health_router
from api.routes.chat import router as chat_router

__all__ = ["tasks_router", "health_router", "chat_router"]