You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
499 B
Python
16 lines
499 B
Python
# -*- coding: utf-8 -*-
|
|
from website.handlers.enterprise import handler
|
|
|
|
handlers = [
|
|
("/enterprise/entity/index", handler.EntityIndexHandler),
|
|
("/enterprise/entity/index/basecount", handler.EntityIndexBasecountHandler),
|
|
("/enterprise/entity/add", handler.EntityAddHandler),
|
|
("/enterprise/entity/edit", handler.EntityEditHandler),
|
|
("/enterprise/entity/info", handler.EntityInfoHandler),
|
|
("/enterprise/entity/pwdcheck", handler.EntityPwdcheckHandler),
|
|
|
|
]
|
|
|
|
page_handlers = [
|
|
|
|
] |