diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-08-04 16:00:23 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-08-06 14:21:08 -0400 |
commit | 4346d37c0662d7d0cae08968e0a5737afcd49c52 (patch) | |
tree | 463cc84e1e014152d518588a0fe339c29e9f74e0 /klippy/webhooks.py | |
parent | 8c8b9b18120ddba92551f8f07e2407f9d190c9db (diff) | |
download | kutter-4346d37c0662d7d0cae08968e0a5737afcd49c52.tar.gz kutter-4346d37c0662d7d0cae08968e0a5737afcd49c52.tar.xz kutter-4346d37c0662d7d0cae08968e0a5737afcd49c52.zip |
webhooks: Introduce add_early_printer_objects()
Create the initial gcode class via new module level
add_early_printer_objects() function.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/webhooks.py')
-rw-r--r-- | klippy/webhooks.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/klippy/webhooks.py b/klippy/webhooks.py index 8be225a4..1c3645be 100644 --- a/klippy/webhooks.py +++ b/klippy/webhooks.py @@ -268,3 +268,6 @@ class WebHooks: logging.info(msg) raise WebRequestError(msg) return cb + +def add_early_printer_objects(printer): + printer.add_object('webhooks', WebHooks(printer)) |