blob: 7c2ec4d43ac60f90ce2384a33416574a6243cee3 [file] [log] [blame]
Sketch🕴️305f8172026-02-27 13:58:43 +04001package tools
2
3func Register(reg Registry) error {
4 reg.Add(NewFuncTool("file_read", FileRead, "Reads contents of the given file."))
5 reg.Add(NewFuncTool("file_write", FileWrite, "Writes given contents to a file."))
6 reg.Add(NewFuncTool("dir_list", DirList, "Reads directory with given name, returning all its entries."))
7 return nil
8}