Update container.py

This commit is contained in:
Namhyeon Go 2024-03-06 16:18:15 +09:00 committed by GitHub
parent b267f5e22b
commit 14878eea50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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