This commit is contained in:
2024-03-04 04:15:01 +03:00
parent d870f1cffe
commit bf24c791fc
12 changed files with 116 additions and 13 deletions

View File

@@ -5,7 +5,8 @@ import routers
app = FastAPI()
routers_list = [
routers.auth_router,
routers.deal_router
routers.deal_router,
routers.client_router
]
for router in routers_list:
app.include_router(router)