11 lines
297 B
Python
11 lines
297 B
Python
# Entity: None - Simple Text Response
|
|
|
|
from fastapi import APIRouter, status
|
|
from typing import Dict
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/yolodi", status_code=status.HTTP_200_OK, response_model=Dict[str, str])
|
|
async def get_yoloo():
|
|
"""Return yoloo message"""
|
|
return {"message": "yoloo!!"} |