6 lines
154 B
Python
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 = "/" )
|