MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / patch

Method patch

apps/kimi-web/src/api/daemon/http.ts:257–259  ·  view source on GitHub ↗
(path: string, body: unknown)

Source from the content-addressed store, hash-verified

255 }
256
257 async patch<T>(path: string, body: unknown): Promise<T> {
258 return this.request<T>('PATCH', path, body);
259 }
260
261 async delete<T>(path: string): Promise<T> {
262 return this.request<T>('DELETE', path);

Callers

nothing calls this directly

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected