bottle的蓝图路由
文件结构目录
appo1.py
from bottle import Bottle
from .blueprints import app01
@app01.route('/hello', method='GET')
def index():
return 'APP01'
app02.py
from bottle import Bottle
from .blueprints import app02
@app02.route('/hello/', method='GET')
def ind
原创
2020-11-30 15:21:41 ·
284 阅读 ·
1 评论