first commit
This commit is contained in:
10
app/routers/printstatus.py
Normal file
10
app/routers/printstatus.py
Normal 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"}
|
||||
Reference in New Issue
Block a user