Update code in endpoints/chy.get.py
This commit is contained in:
parent
44f0278324
commit
f1ceb96c6e
@ -0,0 +1,9 @@
|
||||
from fastapi import APIRouter, Depends, HTTPException, status
|
||||
from typing import Dict
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
@router.get("/chy", status_code=200, response_model=Dict[str, str])
|
||||
async def get_yolo():
|
||||
"""Return yolo"""
|
||||
return {"message": "yolo"}
|
Loading…
x
Reference in New Issue
Block a user