| 25 | ) |
| 26 | |
| 27 | type Puller struct { |
| 28 | o *options |
| 29 | |
| 30 | // map[resource]*reader |
| 31 | readers sync.Map |
| 32 | } |
| 33 | |
| 34 | func NewPuller(options ...Option) (*Puller, error) { |
| 35 | o, err := makeOptions(options...) |
nothing calls this directly
no outgoing calls
no test coverage detected