errors.go 190 Bytes
Newer Older
1 2 3 4
package iface

import "errors"

5 6
var (
	ErrIsDir   = errors.New("object is a directory")
7
	ErrOffline = errors.New("this action must be run in online mode, try running 'ipfs daemon' first")
8
)