Files
order/imooc.py

14 lines
218 B
Python
Raw Normal View History

2019-08-16 18:23:51 +08:00
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"