mirror of
https://github.com/Radiquum/AniX.git
synced 2025-05-01 18:39:40 +05:00
Backend: ADD User Auth
This commit is contained in:
parent
c82b6e7265
commit
23ac963dee
4 changed files with 51 additions and 0 deletions
|
@ -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")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue