mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 19:44:01 +08:00
9 lines
190 B
Go
9 lines
190 B
Go
package iface
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrIsDir = errors.New("object is a directory")
|
|
ErrOffline = errors.New("this action must be run in online mode, try running 'ipfs daemon' first")
|
|
)
|