mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
16 lines
404 B
Python
16 lines
404 B
Python
import uvicorn
|
|
from fastapi import FastAPI
|
|
from modules.pages import index
|
|
from modules.release import release
|
|
from modules.user import profile
|
|
|
|
app = FastAPI()
|
|
|
|
app.include_router(profile.router, prefix="/profile")
|
|
|
|
app.include_router(release.router, prefix="/release")
|
|
|
|
app.include_router(index.router, prefix="/page")
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run("main:app", host="0.0.0.0", port=8000)
|