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

6 lines
154 B
Python

# -*- coding: utf-8 -*-
from application import app
from web.controllers.index import route_index
app.register_blueprint( route_index,url_prefix = "/" )