| 76 | } |
| 77 | |
| 78 | type FormatTime struct { |
| 79 | src baker.FieldIndex |
| 80 | dst baker.FieldIndex |
| 81 | parse func(t []byte) (time.Time, error) |
| 82 | format func(t time.Time) []byte |
| 83 | } |
| 84 | |
| 85 | func NewFormatTime(cfg baker.FilterParams) (baker.Filter, error) { |
| 86 | dcfg := cfg.DecodedConfig.(*FormatTimeConfig) |
nothing calls this directly
no outgoing calls
no test coverage detected