parent
3131b0459f
commit
be8f3b3791
3 changed files with 169 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
mod delete_path_tool;
|
||||
mod edit_files_tool;
|
||||
mod list_directory_tool;
|
||||
mod now_tool;
|
||||
|
@ -7,6 +8,7 @@ mod regex_search;
|
|||
use assistant_tool::ToolRegistry;
|
||||
use gpui::App;
|
||||
|
||||
use crate::delete_path_tool::DeletePathTool;
|
||||
use crate::edit_files_tool::EditFilesTool;
|
||||
use crate::list_directory_tool::ListDirectoryTool;
|
||||
use crate::now_tool::NowTool;
|
||||
|
@ -22,4 +24,5 @@ pub fn init(cx: &mut App) {
|
|||
registry.register_tool(ListDirectoryTool);
|
||||
registry.register_tool(EditFilesTool);
|
||||
registry.register_tool(RegexSearchTool);
|
||||
registry.register_tool(DeletePathTool);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue