MCPcopy Create free account
hub / github.com/cronitorio/cronitor-cli / PUT

Method PUT

lib/api_client.go:141–143  ·  view source on GitHub ↗

PUT makes a PUT request

(endpoint string, body []byte, queryParams map[string]string)

Source from the content-addressed store, hash-verified

139
140// PUT makes a PUT request
141func (c *APIClient) PUT(endpoint string, body []byte, queryParams map[string]string) (*APIResponse, error) {
142 return c.Request("PUT", endpoint, body, queryParams)
143}
144
145// DELETE makes a DELETE request
146func (c *APIClient) DELETE(endpoint string, body []byte, queryParams map[string]string) (*APIResponse, error) {

Calls 1

RequestMethod · 0.95