github.com/ava-labs/avalanchego@v1.11.11/codec/general_codec.go (about)

     1  // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package codec
     5  
     6  // GeneralCodec marshals and unmarshals structs including interfaces
     7  type GeneralCodec interface {
     8  	Codec
     9  	Registry
    10  }