Create module boilerplate
This commit is contained in:
parent
30a7f0665f
commit
33737fec66
5
modules/command-line tools/__init__.py
Normal file
5
modules/command-line tools/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
from .cmd_tools import CmdToolsModule
|
||||
|
||||
|
||||
def get_module():
|
||||
return CmdToolsModule()
|
6
modules/command-line tools/cmd_tools.py
Normal file
6
modules/command-line tools/cmd_tools.py
Normal file
@ -0,0 +1,6 @@
|
||||
from AbstractModule import AbstractModule
|
||||
|
||||
|
||||
class CmdToolsModule(AbstractModule):
|
||||
def run(self):
|
||||
print("Commandline Tools")
|
Loading…
Reference in New Issue
Block a user