hii-0au5mq/endpoints/newendpoint.get.py
2025-03-28 13:53:05 +00:00

9 lines
206 B
Python

# 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"}