mdserver-web/route/config.py

11 lines
214 B
Python
Raw Normal View History

2018-10-02 04:59:56 -04:00
# coding:utf-8
from flask import Blueprint, render_template
config = Blueprint('config', __name__, template_folder='templates')
@config.route("/")
def index():
return render_template('default/config.html')