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.

17 lines
687 B
Python

# -*- coding: utf-8 -*-
from website.handlers.enterprise_entity 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),
11 months ago
("/enterprise/entity/models", handler.ModelsHandler),
("/enterprise/entity/delete", handler.EntityDeleteHandler),
("/enterprise/entity/pwdcheck", handler.EntityPwdcheckHandler),
("/enterprise/industrymap", handler.IndustryMapHandler),
]
page_handlers = []