MCPcopy
hub / github.com/Effect-TS/effect / put

Function put

packages/platform/src/internal/httpClient.ts:121–123  ·  view source on GitHub ↗
(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl)

Source from the content-addressed store, hash-verified

119 return this.execute(internalRequest.post(url, options))
120 },
121 put(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl) {
122 return this.execute(internalRequest.put(url, options))
123 },
124 patch(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl) {
125 return this.execute(internalRequest.patch(url, options))
126 },

Callers 1

httpRouter.tsFile · 0.85

Calls 2

putMethod · 0.80
executeMethod · 0.45

Tested by

no test coverage detected