21 lines
600 B
TypeScript
21 lines
600 B
TypeScript
// src/tools/search/index.ts
|
|
// Copyright (C) 2025 DTP Technologies, LLC
|
|
// All Rights Reserved
|
|
|
|
import { registerTool } from "../index.js";
|
|
|
|
import GoogleSearchTool from "./google.js";
|
|
import GlobTool from "./glob.js";
|
|
import GrepTool from "./grep.js";
|
|
import ListTool from "./list.js";
|
|
|
|
export { default as GoogleSearchTool } from "./google.js";
|
|
export { default as GlobTool } from "./glob.js";
|
|
export { default as GrepTool } from "./grep.js";
|
|
export { default as ListTool } from "./list.js";
|
|
|
|
registerTool(GoogleSearchTool);
|
|
registerTool(GlobTool);
|
|
registerTool(GrepTool);
|
|
registerTool(ListTool);
|