package storage // Storage defines a standard interface for storage. type Store interface { Close() error Get([]byte) ([]byte, error) Set([]byte, []byte) error Delete([]byte) error NextSequence() (int, error) }