mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 02:47:48 +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
|
|
}
|