diff --git a/plugins/container.py b/plugins/container.py index 9571c96..3a39402 100644 --- a/plugins/container.py +++ b/plugins/container.py @@ -9,13 +9,15 @@ class Container(Extension): self.exported_methods = ["container_run", "container_stop"] def dispatch(self, type, id, params, conn): - print ("[*] Greeting!") + print ("[*] Greeting! dispatch") pass def container_run(self, type, id, params, conn): + print ("[*] Greeting! container_run") # todo pass def container_stop(self, type, id, params, conn): + print ("[*] Greeting! container_stop") # todo pass