15 lines
271 B
Python
15 lines
271 B
Python
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"
|
|
]
|