CreateConnection FIXME
(pluginName string, connection any)
| 36 | |
| 37 | // CreateConnection FIXME |
| 38 | func (d *DevlakeClient) TestConnection(pluginName string, connection any) { |
| 39 | d.testCtx.Helper() |
| 40 | _ = sendHttpRequest[Connection](d.testCtx, d.timeout, &testContext{ |
| 41 | client: d, |
| 42 | printPayload: true, |
| 43 | inlineJson: false, |
| 44 | }, http.MethodPost, fmt.Sprintf("%s/plugins/%s/test", d.Endpoint, pluginName), nil, connection) |
| 45 | } |
| 46 | |
| 47 | // CreateConnection FIXME |
| 48 | func (d *DevlakeClient) CreateConnection(pluginName string, connection any) *Connection { |
no outgoing calls