7 lines
115 B
Python
7 lines
115 B
Python
|
from fastapi import APIRouter
|
||
|
|
||
|
router = APIRouter(tags=["room"])
|
||
|
|
||
|
@router.post('/room')
|
||
|
def create_room():
|
||
|
return
|