gecko/snow/consensus/snowman/factory.go

10 lines
207 B
Go
Raw Normal View History

2020-03-10 12:20:34 -07:00
// (c) 2019-2020, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package snowman
// Factory returns new instances of Consensus
type Factory interface {
New() Consensus
}