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.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/controllers/dashboard_controller.py b/src/controllers/dashboard_controller.py
new file mode 100644
index 0000000..888e388
--- /dev/null
+++ b/src/controllers/dashboard_controller.py
@@ -0,0 +1,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>'