from IModule import IModule
class SampleModule(IModule):
"""docstring for SampleModule."""
def __init__(self):
super(SampleModule, self).__init__()
def get_command(self):
return [
"command 1",
"command 2"
]