Files
order/web/controllers/index.py

8 lines
202 B
Python
Raw Normal View History

2019-07-17 16:36:59 +08:00
# -*- coding: utf-8 -*-
2019-07-18 08:59:26 +08:00
from flask import Blueprint,render_template
2019-07-17 16:36:59 +08:00
route_index = Blueprint( 'index_page',__name__ )
@route_index.route("/")
def index():
2019-07-18 08:59:26 +08:00
return render_template("index/index.html")