mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
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")
|
|
)
|