Files
order/imooc.py
2019-08-16 18:23:51 +08:00

14 lines
218 B
Python

from flask import Blueprint
route_imooc=Blueprint("imooc_page",__name__)
@route_imooc.route("/")
def index():
return 'imooc index page'
@route_imooc.route("/hello")
def hello():
return "imooc Hello World"