9 lines
143 B
Python
9 lines
143 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
blueprint = Blueprint('attract', __name__)
|
||
|
|
||
|
|
||
|
@blueprint.route('/jemoeder')
|
||
|
def jemoeder():
|
||
|
return 'je moeder'
|