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

Function post

apps/vis/web/src/api.ts:86–88  ·  view source on GitHub ↗
(path: string)

Source from the content-addressed store, hash-verified

84}
85
86function post<T>(path: string): Promise<T> {
87 return request<T>(path, 'POST');
88}
89
90function del<T>(path: string): Promise<T> {
91 return request<T>(path, 'DELETE');

Callers 1

api.tsFile · 0.85

Calls 1

requestFunction · 0.70

Tested by

no test coverage detected