From 33737fec66585b6859bcef0c2bf3f7e3988ec1e9 Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Mon, 30 Dec 2019 00:33:25 +0100 Subject: [PATCH] Create module boilerplate --- modules/command-line tools/__init__.py | 5 +++++ modules/command-line tools/cmd_tools.py | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 modules/command-line tools/__init__.py create mode 100644 modules/command-line tools/cmd_tools.py 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")