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

7
app/routers/users.py Normal file
View File

@@ -0,0 +1,7 @@
from fastapi import APIRouter
router = APIRouter(prefix="/users", tags=["users"])
@router.get("/")
async def get_users():
return {"message": "List of users"}