7 lines
No EOL
116 B
Python
7 lines
No EOL
116 B
Python
from flask import Blueprint
|
|
|
|
room = Blueprint('rooms', __name__)
|
|
|
|
@room.route('/<int:room_id>')
|
|
def func():
|
|
pass |