14 lines
340 B
Python
14 lines
340 B
Python
from fastapi import APIRouter, Depends, HTTPException
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/skibidi-endpoint")
|
|
async def skibidi_endpoint_handler():
|
|
"""Demo skibidi endpoint"""
|
|
return {
|
|
"message": "skibidiiii yoloooo!!!",
|
|
"metadata": {
|
|
"source": "demo",
|
|
"powered_by": "FastAPI"
|
|
}
|
|
} |