Files
order/www.py

6 lines
154 B
Python
Raw Normal View History

2019-07-17 16:36:59 +08:00
# -*- coding: utf-8 -*-
from application import app
from web.controllers.index import route_index
app.register_blueprint( route_index,url_prefix = "/" )