16 lines
402 B
Python
16 lines
402 B
Python
from fastapi import APIRouter, Depends, HTTPException
|
|
from core.database import fake_users_db
|
|
|
|
router = APIRouter()
|
|
|
|
@router.post("/api/v1/endpoint")
|
|
async def skibidi_endpoint():
|
|
"""Demo skibidi endpoint"""
|
|
return {
|
|
"message": "Success",
|
|
"data": "skibidi yooo",
|
|
"metadata": {
|
|
"response_type": "text",
|
|
"timestamp": "demo_response"
|
|
}
|
|
} |