blob: eb98c9eb15e1dd84f19e5abaa7287acfb93c6386 [file] [log] [blame]
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")