9 lines
206 B
Python
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"} |