mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
12 lines
179 B
Go
12 lines
179 B
Go
|
package store
|
||
|
|
||
|
import "google.golang.org/protobuf/proto"
|
||
|
|
||
|
type Iterator[T proto.Message] interface {
|
||
|
First() bool
|
||
|
Next() bool
|
||
|
Valid() bool
|
||
|
Value() (T, error)
|
||
|
Close() error
|
||
|
}
|