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

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