10 lines
216 B
Python
10 lines
216 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}
|