aboutsummaryrefslogtreecommitdiff
path: root/app/main/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/main/__init__.py')
-rw-r--r--app/main/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/main/__init__.py b/app/main/__init__.py
new file mode 100644
index 0000000..2cb605e
--- /dev/null
+++ b/app/main/__init__.py
@@ -0,0 +1,9 @@
+# -*- coding: utf-8 -*-
+
+from flask import Blueprint
+
+bp = Blueprint('main', __name__)
+
+from app.main import routes
+
+