| 15 | var _ Creator = (*nopExtractCreator)(nil) |
| 16 | |
| 17 | type nopExtractCreator struct { |
| 18 | internal Creator |
| 19 | } |
| 20 | |
| 21 | func NopExtractCreator(internal Creator) Creator { |
| 22 | return &nopExtractCreator{internal: internal} |
nothing calls this directly
no outgoing calls
no test coverage detected