| 22 | ) |
| 23 | |
| 24 | type BuiltinTool interface { |
| 25 | GetName() string |
| 26 | GetDescription() string |
| 27 | GetInputSchema() interface{} |
| 28 | Execute(ctx context.Context, arguments map[string]interface{}) (*protocol.CallToolResult, error) |
| 29 | } |
| 30 | |
| 31 | type ToolRegistry struct { |
| 32 | tools map[string]BuiltinTool |
no outgoing calls
no test coverage detected