8 lines
146 B
Python
8 lines
146 B
Python
|
from fastapi import APIRouter
|
||
|
|
||
|
router = APIRouter()
|
||
|
|
||
|
|
||
|
@router.post("/")
|
||
|
async def update_admin():
|
||
|
return {"message": "Admin getting schwifty"}
|