Files
order/web/controllers/index.py
2019-07-17 16:36:59 +08:00

8 lines
164 B
Python

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