mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-06 16:58:11 +08:00
19 lines
268 B
Go
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
|
|
}
|