MCPcopy Index your code
hub / github.com/Effect-TS/effect / post

Function post

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

Source from the content-addressed store, hash-verified

116 return this.execute(internalRequest.head(url, options))
117 },
118 post(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl) {
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 },

Callers 1

httpRouter.tsFile · 0.85

Calls 1

executeMethod · 0.45

Tested by

no test coverage detected