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