Files
attract/attract_server/modules.py
2016-07-29 17:43:58 +02:00

10 lines
197 B
Python

from flask import Blueprint
from pillar_server.utils import jsonify
blueprint = Blueprint('attract', __name__)
@blueprint.route('/jemoeder')
def jemoeder():
return jsonify({'je': 'moeder'})