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