Rename folder names

This commit is contained in:
Thomas Dhome-Casanova
2025-01-29 22:39:25 -08:00
parent 17d02bc8c0
commit 746507b9d9
14 changed files with 1755 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from .base import CLIResult, ToolResult
from .collection import ToolCollection
from .computer import ComputerTool
from .screen_capture import get_screenshot
__ALL__ = [
CLIResult,
ComputerTool,
ToolCollection,
ToolResult,
get_screenshot,
]