mirror of
https://github.com/harness/drone.git
synced 2025-05-02 21:55:27 +00:00
9 lines
148 B
Go
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")
|
|
)
|