feat: Update endpoint midas-is-king
This commit is contained in:
parent
b8b4a5aa88
commit
68c7467e22
@ -0,0 +1,16 @@
|
|||||||
|
from fastapi import APIRouter, Depends, HTTPException
|
||||||
|
from core.database import fake_users_db
|
||||||
|
|
||||||
|
router = APIRouter()
|
||||||
|
|
||||||
|
@router.post("/midas-is-king")
|
||||||
|
async def midas_endpoint():
|
||||||
|
"""Return Midas campaign message"""
|
||||||
|
return {
|
||||||
|
"message": "Success",
|
||||||
|
"data": "Midas for President!!!",
|
||||||
|
"metadata": {
|
||||||
|
"source": "campaign_slogan",
|
||||||
|
"timestamp": "2024"
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user