Initialize dev environment

This commit is contained in:
2026-02-19 17:13:22 +08:00
parent f3220d8eb0
commit 65b9bfa5e7
18 changed files with 1081 additions and 7 deletions

11
app/main.py Normal file
View File

@@ -0,0 +1,11 @@
from fastapi import FastAPI
from app.routers import users
app = FastAPI()
app.include_router(users.router)
@app.get("/")
async def root():
return {"message": "Hello, World!"}