Update code in endpoints/endpoint.get.py
This commit is contained in:
parent
14a3e1b52a
commit
99a1fe60ca
@ -0,0 +1,8 @@
|
||||
from fastapi import APIRouter, status
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
@router.get("/endpoint", status_code=status.HTTP_200_OK)
|
||||
async def get_yoloo():
|
||||
"""Return yoloo"""
|
||||
return {"message": "yoloo"}
|
Loading…
x
Reference in New Issue
Block a user