mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-23 19:01:15 +00:00
9 lines
327 B
TypeScript
9 lines
327 B
TypeScript
/**
|
|
* Barrel for web_fetch and web_search tool factories.
|
|
*
|
|
* Higher-level tool assembly imports this narrow module so tests can mock both
|
|
* web tools together without loading provider-specific implementations.
|
|
*/
|
|
export { createWebFetchTool } from "./web-fetch.js";
|
|
export { createWebSearchTool } from "./web-search.js";
|