16 lines
282 B
Python
16 lines
282 B
Python
"""
|
|
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",
|
|
] |
