File size: 207 Bytes
310260a
 
 
 
 
 
1
2
3
4
5
6
7
"""API routers package."""
from .tasks import router as tasks_router
from .auth import router as auth_router
from .chat import router as chat_router

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