diff options
| author | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-04-04 00:03:04 +0300 |
|---|---|---|
| committer | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-04-04 00:03:04 +0300 |
| commit | 63e87a3ed84ee9e9e4a4ff329a40d2b7ce5e5d0d (patch) | |
| tree | c24731c200df3b5854a5abc14f7a5481a33d838a /app/routes/__init__.py | |
| parent | d835d79eb24c730ec8148415113e846a01cefd19 (diff) | |
add profile
Diffstat (limited to 'app/routes/__init__.py')
| -rw-r--r-- | app/routes/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/routes/__init__.py b/app/routes/__init__.py index 383ef66..a57869a 100644 --- a/app/routes/__init__.py +++ b/app/routes/__init__.py @@ -3,10 +3,11 @@ from fastapi import APIRouter from .auth import router as auth_router from .me import router as me_router from .register import router as register_router +from .user import router as user_router router = APIRouter() router.include_router(register_router, prefix="/auth") router.include_router(auth_router, prefix="/auth") - +router.include_router(user_router) router.include_router(me_router) |
