first commit

This commit is contained in:
2024-03-26 13:17:04 -04:00
commit de448a35d1
22 changed files with 156 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from fastapi import APIRouter, Depends, HTTPException
router = APIRouter(
prefix="/status",
tags=["status"],
responses={404: {"description": "Not found"}},
)
@router.get("/")
async def read_items():
return {"Hello": "World"}