| 284 | } |
| 285 | |
| 286 | type ZstdEncoder struct { |
| 287 | encoder *zstd.Encoder |
| 288 | } |
| 289 | |
| 290 | func NewZstdEncoder(options ...EncodingOption) (*ZstdEncoder, error) { |
| 291 | cfg := encoderConfig{level: 3} |
nothing calls this directly
no outgoing calls
no test coverage detected