mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-10 05:52:20 +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
|
|
}
|