Create module boilerplate

This commit is contained in:
Marcel Schwarz 2019-12-30 00:33:25 +01:00
parent 30a7f0665f
commit 33737fec66
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,5 @@
from .cmd_tools import CmdToolsModule
def get_module():
return CmdToolsModule()

View File

@ -0,0 +1,6 @@
from AbstractModule import AbstractModule
class CmdToolsModule(AbstractModule):
def run(self):
print("Commandline Tools")