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.
19 lines
673 B
Python
19 lines
673 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from website.handlers.enterprise_device import handler
|
|
|
|
|
|
handlers = [
|
|
("/enterprise/device/classification/add", handler.DeviceClassificationAddHandler),
|
|
("/enterprise/device/classification", handler.DeviceClassificationHandler),
|
|
("/enterprise/device/classification/delete", handler.DeviceClassificationDeleteHandler),
|
|
|
|
("/enterprise/entity/nodes/device/add", handler.DeviceAddHandler),
|
|
("/enterprise/entity/nodes/device/edit", handler.DeviceEditHandler),
|
|
("/enterprise/entity/nodes/device/delete", handler.DeviceDeleteHandler),
|
|
("/enterprise/entity/nodes/device/list", handler.DeviceListHandler),
|
|
|
|
]
|
|
page_handlers = [
|
|
|
|
] |