from fastapi import APIRouter

router = APIRouter()

@router.post("/create")
async def create_lobby():
    return {"msg": "create lobby"}
