MCPcopy Index your code
hub / github.com/CommandCodeAI/BaseAI / get

Method get

packages/core/src/common/request.ts:170–172  ·  view source on GitHub ↗
(options: Omit<RequestOptions, 'method' | 'body'>)

Source from the content-addressed store, hash-verified

168 }
169
170 async get<T>(options: Omit<RequestOptions, 'method' | 'body'>): Promise<T> {
171 return this.send<T>({...options, method: 'GET'});
172 }
173
174 async put<T>(options: Omit<RequestOptions, 'method'>): Promise<T> {
175 return this.send<T>({...options, method: 'PUT'});

Callers 8

registerRootFunction · 0.80
usePipeFunction · 0.80
handleResponseStreamFunction · 0.80
sendMethod · 0.80
webpackFunction · 0.80
GETFunction · 0.80
handleRequestFunction · 0.80

Calls 1

sendMethod · 0.95

Tested by

no test coverage detected