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.
15 lines
444 B
Python
15 lines
444 B
Python
# -*- coding: utf-8 -*-
|
|
from website.handlers.system import handler
|
|
|
|
handlers = [
|
|
# ("/", handler.Handler),
|
|
("/system/version", handler.VersionHandler),
|
|
("/system/identifycode", handler.IdentifycodeHandler),
|
|
("/system/license/upload", handler.LicenseUploadHandler),
|
|
("/system/activate/info", handler.ActivateInfoHandler),
|
|
("/system/info", handler.InfoHandler),
|
|
("/system/log", handler.LogHandler),
|
|
]
|
|
|
|
page_handlers = [
|
|
] |