summaryrefslogtreecommitdiff
path: root/src/controllers/dashboard_controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/controllers/dashboard_controller.py')
-rw-r--r--src/controllers/dashboard_controller.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/controllers/dashboard_controller.py b/src/controllers/dashboard_controller.py
index 888e388..bef7441 100644
--- a/src/controllers/dashboard_controller.py
+++ b/src/controllers/dashboard_controller.py
@@ -1,6 +1,8 @@
from flask import Blueprint
-from src.controllers import dashboard_blueprint
-from src.database.models.blog import Blog
+from src.database.models import Blog
+
+dashboard_blueprint = Blueprint('dashboard_controller',
+ '__dashboard_controller__')
@dashboard_blueprint.get('/dashboard')
def index():