8 lines
146 B
Python
Raw Normal View History

2025-03-20 22:30:13 +11:00
from fastapi import APIRouter
router = APIRouter()
@router.post("/")
async def update_admin():
return {"message": "Admin getting schwifty"}