2019-12-16 22:51:06 +01:00
|
|
|
from AbstractModule import AbstractModule
|
2019-12-14 04:11:32 +01:00
|
|
|
|
|
|
|
|
2019-12-16 22:51:06 +01:00
|
|
|
class SampleModule(AbstractModule):
|
2019-12-14 04:11:32 +01:00
|
|
|
"""docstring for SampleModule."""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super(SampleModule, self).__init__()
|
|
|
|
|
2019-12-16 22:51:06 +01:00
|
|
|
def run(self):
|
2019-12-21 02:49:53 +01:00
|
|
|
print("Command 1")
|
|
|
|
print("Command 2")
|