mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-12 15:03:45 +00:00
9 lines
188 B
Go
9 lines
188 B
Go
package discover
|
|
|
|
type Storage interface {
|
|
ContentId(contentKey []byte) []byte
|
|
|
|
Get(contentKey []byte, contentId []byte) ([]byte, error)
|
|
|
|
Put(contentKey []byte, content []byte) error
|
|
}
|