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

Method PATCH

lib/api_client.go:151–153  ·  view source on GitHub ↗

PATCH makes a PATCH request

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

Source from the content-addressed store, hash-verified

149
150// PATCH makes a PATCH request
151func (c *APIClient) PATCH(endpoint string, body []byte, queryParams map[string]string) (*APIResponse, error) {
152 return c.Request("PATCH", endpoint, body, queryParams)
153}
154
155func (c *APIClient) log(msg string) {
156 if c.Logger != nil {

Calls 1

RequestMethod · 0.95