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