github.com/machinefi/w3bstream@v1.6.5-rc9.0.20240426031326-b8c7c4876e72/pkg/core/storage/db.go (about) 1 package storage 2 3 type KVStore interface { 4 Insert([]byte, []byte) error 5 Read([]byte) ([]byte, error) 6 }