13 lines
328 B
Python
13 lines
328 B
Python
|
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.")
|