from flask import Blueprint from src.database.models import Blog dashboard_blueprint = Blueprint('dashboard_controller', '__dashboard_controller__') @dashboard_blueprint.get('/dashboard') def index(): return '

Hello, world!

'