Initial cleanup of the codebase
Change-Id: Idbc92ea3c2d7ee4d4807d1d83ceee9a299b9a9f7
diff --git a/service/admin/__init__.py b/service/admin/__init__.py
new file mode 100644
index 0000000..eb98c9e
--- /dev/null
+++ b/service/admin/__init__.py
@@ -0,0 +1,10 @@
+from flask import Blueprint, render_template
+
+__author__ = 'hanl'
+
+router = Blueprint('admin', __name__,
+ template_folder='templates')
+
+@router.route("/", methods=['GET'])
+def index():
+ return render_template("index.html")
\ No newline at end of file