7 lines
87 B
Go
7 lines
87 B
Go
package cache
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrorKeyNotFound = errors.New("key not found")
|
|
) |