linux-tools/modules/sample/sampleModule.py

15 lines
271 B
Python
Raw Normal View History

2019-12-14 04:11:32 +01:00
from IModule import IModule
class SampleModule(IModule):
"""docstring for SampleModule."""
def __init__(self):
super(SampleModule, self).__init__()
2019-12-14 04:26:02 +01:00
def get_command(self):
2019-12-14 04:11:32 +01:00
return [
"command 1",
"command 2"
]