* 获取工具详情 * @param toolName 工具名称 * @returns 工具信息
(toolName: string)
| 48 | * @returns 工具信息 |
| 49 | */ |
| 50 | async get(toolName: string): Promise<ToolInfo> { |
| 51 | return this.request<ToolInfo>(`/v1/tools/${toolName}`); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * 启用工具 |
no test coverage detected