linux-tools/modules/helloworld/HelloWorld.py
Marcel Schwarz 6061a7d224 Change from dynamic to explicit module loading
dynamic loading was removed to have an overall better flow control,
Remove Abstract Module, 
clear out module __init__.py
2020-03-06 02:34:57 +01:00

7 lines
200 B
Python

class HelloWorld:
"""docstring for SampleModule."""
def run(self):
print("This shows that your installation is working correctly.")
print("You can now start using the tool.")