summaryrefslogtreecommitdiff
path: root/src/controllers/dashboard_controller.py
blob: bef7441a6d61f6b8c99e4c3bd8bede080cb3d1d8 (plain)
1
2
3
4
5
6
7
8
9
from flask import Blueprint
from src.database.models import Blog

dashboard_blueprint = Blueprint('dashboard_controller',
                                '__dashboard_controller__')

@dashboard_blueprint.get('/dashboard')
def index():
    return '<p>Hello, world!</p>'