go-ethereum/portalnetwork/storage/content_storage.go
2024-03-25 17:09:04 +08:00

11 lines
246 B
Go

package storage
import "fmt"
var ErrContentNotFound = fmt.Errorf("content not found")
type ContentStorage interface {
Get(contentKey []byte, contentId []byte) ([]byte, error)
Put(contentKey []byte, contentId []byte, content []byte) error
}