Marcel Schwarz
af169b9598
Delete CommandRunner Set up API to delegate the module execution to the module itself Update SampleModule
13 lines
262 B
Python
13 lines
262 B
Python
from AbstractModule import AbstractModule
|
|
|
|
|
|
class SampleModule(AbstractModule):
|
|
"""docstring for SampleModule."""
|
|
|
|
def __init__(self):
|
|
super(SampleModule, self).__init__()
|
|
|
|
def run(self):
|
|
print("Command 1")
|
|
print("Command 2")
|