Backend: ADD User Auth

This commit is contained in:
Kentai Radiquum 2024-04-17 17:13:40 +05:00
parent c82b6e7265
commit 23ac963dee
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
4 changed files with 51 additions and 0 deletions

View file

@ -2,11 +2,13 @@ import uvicorn
from fastapi import FastAPI
from modules.pages import index
from modules.release import release
from modules.user import auth
from modules.user import profile
app = FastAPI()
app.include_router(profile.router, prefix="/profile")
app.include_router(auth.router, prefix="/auth")
app.include_router(release.router, prefix="/release")