from flask import Blueprint from app.controllers import sessions_blueprint @sessions_blueprint.route('/') def hello(): return '

Hello, world!

'