Files
attract/attract_server/modules.py

10 lines
194 B
Python

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