Files
order/web/controllers/index.py
2019-07-18 08:59:26 +08:00

8 lines
202 B
Python

# -*- coding: utf-8 -*-
from flask import Blueprint,render_template
route_index = Blueprint( 'index_page',__name__ )
@route_index.route("/")
def index():
return render_template("index/index.html")