mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
JavaScript expects this to be "this dag node is a directory". I'm almost of a mind to say "don't parse errors" but, well, we don't give any better alternatives. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
9 lines
197 B
Go
9 lines
197 B
Go
package iface
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrIsDir = errors.New("this dag node is a directory")
|
|
ErrOffline = errors.New("this action must be run in online mode, try running 'ipfs daemon' first")
|
|
)
|