Integration implements the Integration interface for Docker
| 23 | |
| 24 | // Integration implements the Integration interface for Docker |
| 25 | type Integration struct { |
| 26 | client *client.Client |
| 27 | logger *logrus.Logger |
| 28 | monitoring bool |
| 29 | monitoringMu sync.RWMutex |
| 30 | stopMonitoring context.CancelFunc |
| 31 | } |
| 32 | |
| 33 | // New creates a new Docker integration |
| 34 | func New(logger *logrus.Logger) *Integration { |
nothing calls this directly
no outgoing calls
no test coverage detected