(format string)
| 47 | // [DecoderRegistry] returns an error if no [Decoder] is registered for the format. |
| 48 | type DecoderRegistry interface { |
| 49 | Decoder(format string) (Decoder, error) |
| 50 | } |
| 51 | |
| 52 | // [CodecRegistry] combines [EncoderRegistry] and [DecoderRegistry] interfaces. |
no outgoing calls