10 lines
237 B
Python
10 lines
237 B
Python
from fastapi import APIRouter, Depends, HTTPException
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/yolo-endpoint")
|
|
async def yolo_endpoint_handler():
|
|
"""Demo yolo endpoint"""
|
|
return {
|
|
"message": "yoloooo! this shii works!!"
|
|
} |