github.com/MetalBlockchain/metalgo@v1.11.9/database/encdb/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 encdb
     5  
     6  import (
     7  	"github.com/MetalBlockchain/metalgo/codec"
     8  	"github.com/MetalBlockchain/metalgo/codec/linearcodec"
     9  )
    10  
    11  const CodecVersion = 0
    12  
    13  var Codec codec.Manager
    14  
    15  func init() {
    16  	lc := linearcodec.NewDefault()
    17  	Codec = codec.NewDefaultManager()
    18  
    19  	if err := Codec.RegisterCodec(CodecVersion, lc); err != nil {
    20  		panic(err)
    21  	}
    22  }