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
412 B
Python
16 lines
412 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from website.handlers.model_hub import handler
|
|
|
|
handlers = [
|
|
# ("/", handler.Handler),
|
|
("/model/hub/list", handler.ListHandler),
|
|
("/model/hub/sync", handler.SyncHandler),
|
|
("/model/hub/add", handler.AddHandler),
|
|
("/model/hub/edit", handler.EditHandler),
|
|
("/model/hub/info", handler.InfoHandler),
|
|
("/model/hub/delete", handler.DeleteHandler),
|
|
]
|
|
|
|
page_handlers = [
|
|
] |