Files
woodpecker/vendor/github.com/koding/cache/errors.go
2015-10-22 00:58:59 +02:00

9 lines
148 B
Go

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