small update for callback_plugins/webhook_callback.py

This commit is contained in:
Chris Hammer 2023-06-23 17:46:50 -04:00
parent 19dbabb9c6
commit d5fab85e5a

View File

@ -17,19 +17,6 @@ class CallbackModule(CallbackBase):
super(CallbackModule, self).__init__() super(CallbackModule, self).__init__()
def v2_playbook_on_start(self, playbook):
self._display.display("Custom commands for <v2_playbook_on_start> go here", color=C.COLOR_OK)
def v2_playbook_on_task_start(self, task, is_conditional):
self._display.display("Custom commands for <v2_playbook_on_task_start> go here", color=C.COLOR_OK)
def v2_playbook_on_stats(self, stats):
self._display.display("Custom commands for <v2_playbook_on_stats> go here", color=C.COLOR_OK)
###################################################################################################################
def v2_on_any(self, *args, **kwargs): def v2_on_any(self, *args, **kwargs):
self._display.display("Custom commands for <v2_on_any> go here", color=C.COLOR_OK) self._display.display("Custom commands for <v2_on_any> go here", color=C.COLOR_OK)