diff --git a/modules/command-line tools/__init__.py b/modules/command-line tools/__init__.py new file mode 100644 index 0000000..90465af --- /dev/null +++ b/modules/command-line tools/__init__.py @@ -0,0 +1,5 @@ +from .cmd_tools import CmdToolsModule + + +def get_module(): + return CmdToolsModule() \ No newline at end of file diff --git a/modules/command-line tools/cmd_tools.py b/modules/command-line tools/cmd_tools.py new file mode 100644 index 0000000..a0a8320 --- /dev/null +++ b/modules/command-line tools/cmd_tools.py @@ -0,0 +1,6 @@ +from AbstractModule import AbstractModule + + +class CmdToolsModule(AbstractModule): + def run(self): + print("Commandline Tools")