()
| 25 | |
| 26 | export const toolsApi = { |
| 27 | async load(): Promise<ToolsResponse> { |
| 28 | return fetchJson('/api/tools') |
| 29 | }, |
| 30 | |
| 31 | async update(disabled: string[]): Promise<{ disabled: string[] }> { |
| 32 | return fetchJson('/api/tools', { |
nothing calls this directly
no test coverage detected