| 31 | } |
| 32 | |
| 33 | type HashConfig struct { |
| 34 | SrcField string `help:"Name of the field to hash" required:"true"` |
| 35 | DstField string `help:"Name of the field to write the result to" required:"true"` |
| 36 | Function string `help:"Name of the hash function to use" required:"true"` |
| 37 | Encoding string `help:"Name of the encoding function to use" required:"false"` |
| 38 | } |
| 39 | |
| 40 | type Hash struct { |
| 41 | numFilteredLines int64 |
nothing calls this directly
no outgoing calls
no test coverage detected