Update code in endpoints/newendpoint.get.py

This commit is contained in:
Backend IM Bot 2025-03-28 13:53:05 +00:00
parent 836184018d
commit cfd40668cb

View File

@ -0,0 +1,9 @@
# Entity: Test
from fastapi import APIRouter, status
router = APIRouter()
@router.get("/newendpoint", status_code=status.HTTP_200_OK)
async def test_endpoint():
return {"message": "this stuff works"}