diff options
| author | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-03-17 14:11:45 +0200 |
|---|---|---|
| committer | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-03-17 14:11:45 +0200 |
| commit | 47fd81a5910eab3483f79d03eedf9307bc81252f (patch) | |
| tree | 3e1ebd1bddcea649eb968e65161555afd4c2898c /app/routes/routes.py | |
| parent | f01cb6703710b7df4c7c022047cd35e1d5e9c70e (diff) | |
simple registration prototype
Diffstat (limited to 'app/routes/routes.py')
| -rw-r--r-- | app/routes/routes.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/routes/routes.py b/app/routes/routes.py index e69de29..7db7ec4 100644 --- a/app/routes/routes.py +++ b/app/routes/routes.py @@ -0,0 +1,6 @@ +from fastapi import APIRouter + +from .register import router as register_router + +router = APIRouter() +router.include_router(register_router) |
