linux-tools/modules/sample/sampleModule.py

13 lines
262 B
Python
Raw Normal View History

from AbstractModule import AbstractModule
2019-12-14 04:11:32 +01:00
class SampleModule(AbstractModule):
2019-12-14 04:11:32 +01:00
"""docstring for SampleModule."""
def __init__(self):
super(SampleModule, self).__init__()
def run(self):
print("Command 1")
print("Command 2")