11 lines
302 B
Python
11 lines
302 B
Python
# Entity: YoloResponse
|
|
|
|
from fastapi import APIRouter, status
|
|
from schemas.yolo import YoloResponseSchema
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/yolomax", response_model=YoloResponseSchema, status_code=status.HTTP_200_OK)
|
|
async def get_yolo():
|
|
"""Return yolooo3!"""
|
|
return {"message": "yolooo3!"} |