1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-10 05:52:20 +08:00
Files
kubo/block/block.go
Juan Batiz-Benet 3b570d3f82 skeleton.
2014-06-26 01:14:26 -07:00

11 lines
117 B
Go

package block
import (
"github.com/jbenet/go-multihash"
)
type Block struct {
Multihash []byte
Data []byte
}