| 23 | type metaCtxKey struct{} |
| 24 | |
| 25 | type Reporter struct { |
| 26 | // initialized reporters |
| 27 | reporters []reporter |
| 28 | } |
| 29 | |
| 30 | // New initializes all configured error reporters and returns a Reporter instance. |
| 31 | func New(config *Config) (*Reporter, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected