Files
attract/attract_server/modules.py

10 lines
197 B
Python
Raw Normal View History

from flask import Blueprint
2016-07-29 17:43:58 +02:00
from pillar_server.utils import jsonify
blueprint = Blueprint('attract', __name__)
@blueprint.route('/jemoeder')
def jemoeder():
2016-07-29 17:43:58 +02:00
return jsonify({'je': 'moeder'})