mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-23 19:37:46 +08:00
11 lines
117 B
Go
11 lines
117 B
Go
package block
|
|
|
|
import (
|
|
"github.com/jbenet/go-multihash"
|
|
)
|
|
|
|
type Block struct {
|
|
Multihash []byte
|
|
Data []byte
|
|
}
|