github.com/MetalBlockchain/metalgo@v1.11.9/snow/engine/common/fx.go (about)

     1  // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package common
     5  
     6  import "github.com/MetalBlockchain/metalgo/ids"
     7  
     8  // Fx wraps an instance of a feature extension
     9  type Fx struct {
    10  	ID ids.ID
    11  	Fx interface{}
    12  }