15 lines
376 B
Python
15 lines
376 B
Python
12 months ago
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from website.handlers.enterprise_busi_model import handler
|
||
|
|
||
|
|
||
|
handlers = [
|
||
|
("/enterprise/model/deployment/list", handler.ListHandler),
|
||
|
("/enterprise/model/deployment/add", handler.AddHandler),
|
||
|
("/enterprise/model/deployment/info", handler.InfoHandler),
|
||
|
("/enterprise/model/deployment/edit", handler.EditHandler),
|
||
|
|
||
|
]
|
||
|
page_handlers = [
|
||
|
|
||
|
]
|