github.com/MetalBlockchain/metalgo@v1.11.9/vms/fx/factory.go (about)

     1  // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package fx
     5  
     6  // Factory returns an instance of a feature extension
     7  type Factory interface {
     8  	New() any
     9  }