mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 19:44:01 +08:00

* go-log * sys * go-crypto License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
21 lines
504 B
Go
21 lines
504 B
Go
package iface
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
ipld "gx/ipfs/QmWi2BYBL5gJ3CiAiQchg6rn1A8iBsrWy51EYxvHVjFvLb/go-ipld-format"
|
|
)
|
|
|
|
// UnixfsAPI is the basic interface to immutable files in IPFS
|
|
type UnixfsAPI interface {
|
|
// Add imports the data from the reader into merkledag file
|
|
Add(context.Context, io.Reader) (Path, error)
|
|
|
|
// Cat returns a reader for the file
|
|
Cat(context.Context, Path) (Reader, error)
|
|
|
|
// Ls returns the list of links in a directory
|
|
Ls(context.Context, Path) ([]*ipld.Link, error)
|
|
}
|