| 22 | } |
| 23 | |
| 24 | type Source struct { |
| 25 | metricsLevel metrics.AcquisitionMetricsLevel |
| 26 | Config Configuration |
| 27 | logger *log.Entry |
| 28 | s3Client S3API |
| 29 | sqsClient SQSAPI |
| 30 | readerChan chan S3Object |
| 31 | t *tomb.Tomb |
| 32 | out chan pipeline.Event |
| 33 | ctx context.Context |
| 34 | cancel context.CancelFunc |
| 35 | } |
| 36 | |
| 37 | type S3Object struct { |
| 38 | Key string |
nothing calls this directly
no outgoing calls
no test coverage detected