woodpecker/vendor/github.com/koding/cache/errors.go

9 lines
148 B
Go
Raw Normal View History

package cache
import "errors"
var (
// ErrNotFound holds exported `not found error` for not found items
ErrNotFound = errors.New("not found")
)