kubo/thirdparty/posinfo/posinfo.go
Steven Allen 70d6629940 gx: update go-cid, go-multibase, base32
License: MIT
Signed-off-by: Steven Allen <steven@stebalien.com>
2017-09-01 17:46:49 -07:00

19 lines
268 B
Go

package posinfo
import (
"os"
node "gx/ipfs/QmPN7cwmpcc4DWXb4KTB9dNAJgjuPY69h3npsMfhRrQL9c/go-ipld-format"
)
type PosInfo struct {
Offset uint64
FullPath string
Stat os.FileInfo // can be nil
}
type FilestoreNode struct {
node.Node
PosInfo *PosInfo
}