13 lines
260 B
Python
13 lines
260 B
Python
from __future__ import absolute_import
|
|
|
|
|
|
def hook_startup():
|
|
return "success"
|
|
|
|
|
|
__plugin_name__ = "Hook Plugin"
|
|
__plugin_description__ = "Test hook plugin"
|
|
__plugin_hooks__ = {
|
|
'octoprint.core.startup': hook_startup,
|
|
'some.ordered.callback': hook_startup
|
|
}
|