Initial commit
This commit is contained in:
16
tools/__init__.py
Normal file
16
tools/__init__.py
Normal file
@@ -0,0 +1,16 @@
|
||||
"""
|
||||
Tool bootstrap.
|
||||
|
||||
Importing this module forces
|
||||
tool registration into registry.
|
||||
"""
|
||||
|
||||
from tools.ping import PingTool
|
||||
from tools.filesystem import FilesystemTool
|
||||
from tools.subprocess import SubprocessTool
|
||||
|
||||
__all__ = [
|
||||
"PingTool",
|
||||
"FilesystemTool",
|
||||
"SubprocessTool",
|
||||
]
|
||||
Reference in New Issue
Block a user
