Add Allusers view

This commit is contained in:
2024-03-31 01:36:57 +03:00
parent b733a6bf9a
commit f5ecba9c1e
5 changed files with 27 additions and 2 deletions

View File

@@ -1,7 +1,8 @@
from fastapi import FastAPI
from api.presentation.routers import healthcheck_router
from api.presentation.routers import healthcheck_router, user_router
def init_routers(app: FastAPI) -> None:
app.include_router(user_router)
app.include_router(healthcheck_router)