Files
attract/attract_server/modules.py

10 lines
194 B
Python
Raw Normal View History

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