linux-tools/modules/helloworld/helloWorld.py

13 lines
328 B
Python
Raw Normal View History

2020-03-05 21:34:17 +01:00
from AbstractModule import AbstractModule
class HelloWorld(AbstractModule):
"""docstring for SampleModule."""
def __init__(self):
super(HelloWorld, self).__init__()
def run(self):
print("This shows that your installation is working correctly.")
print("You can now start using the tool.")