browser-go-api/rooms/room.py

7 lines
116 B
Python
Raw Normal View History

2019-10-01 23:32:11 +00:00
from flask import Blueprint
room = Blueprint('rooms', __name__)
@room.route('/<int:room_id>')
def func():
pass