(format string)
| 38 | // [EncoderRegistry] returns an error if no [Encoder] is registered for the format. |
| 39 | type EncoderRegistry interface { |
| 40 | Encoder(format string) (Encoder, error) |
| 41 | } |
| 42 | |
| 43 | // DecoderRegistry returns an [Decoder] for a given format. |
no outgoing calls