func()

in trait.go [93:100]


func (c *Client) DeleteTrait(name string) error {
	resp, err := c.request(http.MethodDelete, fmt.Sprintf("/traits/%s", url.PathEscape(name)), "application/json", nil)
	if err == nil {
		resp.Close()
	}

	return err
}