feat(): profiles

This commit is contained in:
doas root
2025-11-20 01:37:19 +03:00
parent 8c7ce13922
commit 52f3072729
17 changed files with 361 additions and 24 deletions
+2 -1
View File
@@ -16,7 +16,7 @@ from fastapi.middleware.cors import CORSMiddleware
from template_project.web_api.configuration import load_configuration
from template_project.web_api.ioc.make import make_ioc
from template_project.web_api.routes import auth, healthcheck
from template_project.web_api.routes import auth, healthcheck, profile
LOG_CONFIG: Final = {
"version": 1,
@@ -65,6 +65,7 @@ def make_asgi_application(
)
app.include_router(auth.router)
app.include_router(healthcheck.router)
app.include_router(profile.router)
setup_dishka(container=ioc, app=app)