github.com/MetalBlockchain/metalgo@v1.11.9/snow/consensus/snowman/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 snowman 5 6 // Factory returns new instances of Consensus 7 type Factory interface { 8 New() Consensus 9 }