This commit is contained in:
2026-01-14 17:58:25 +08:00
commit 4620e349d9
20 changed files with 2207 additions and 0 deletions

13
main.py Normal file
View File

@@ -0,0 +1,13 @@
from fastapi import FastAPI
from handler.exception import install as exception_install
from lifespan import lifespan
app = FastAPI(lifespan=lifespan)
exception_install(app)
if __name__ == "__main__":
import uvicorn
uvicorn.run(app=app, port=8000)