Metadata about the input data; each Input will directly populate this map as appropriate. Consumers (filters) will access via Get()
| 10 | // Metadata about the input data; each Input will directly populate this |
| 11 | // map as appropriate. Consumers (filters) will access via Get() |
| 12 | type Metadata map[string]interface{} |
| 13 | |
| 14 | func (m *Metadata) get(key string) (val interface{}, ok bool) { |
| 15 | if *m == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected