gecko/snow/consensus/snowstorm/factory.go

10 lines
209 B
Go

// (c) 2019-2020, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package snowstorm
// Factory returns new instances of Consensus
type Factory interface {
New() Consensus
}