NewIntegrationClient returns a client for the Integration from the given config.
(c config)
| 1379 | |
| 1380 | // NewIntegrationClient returns a client for the Integration from the given config. |
| 1381 | func NewIntegrationClient(c config) *IntegrationClient { |
| 1382 | return &IntegrationClient{config: c} |
| 1383 | } |
| 1384 | |
| 1385 | // Use adds a list of mutation hooks to the hooks stack. |
| 1386 | // A call to `Use(f, g, h)` equals to `integration.Hooks(f(g(h())))`. |
no outgoing calls
no test coverage detected