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

License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com> This commit was moved from ipfs/interface-go-ipfs-core@d68c62b157 This commit was moved from ipfs/boxo@0e2ab3797e
10 lines
261 B
Go
10 lines
261 B
Go
package iface
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrIsDir = errors.New("this dag node is a directory")
|
|
ErrNotFile = errors.New("this dag node is not a regular file")
|
|
ErrOffline = errors.New("this action must be run in online mode, try running 'ipfs daemon' first")
|
|
)
|