This commit is contained in:
2024-08-12 22:22:51 +03:00
commit e817baab55
28 changed files with 509 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
from starlette import status
from starlette.responses import JSONResponse
from . import router
@router.get("/example")
async def example():
return JSONResponse(
status_code=status.HTTP_200_OK,
content={
"status": "OK"
}
)