9 lines
301 B
Go
9 lines
301 B
Go
package storage
|
|
|
|
import "errors"
|
|
|
|
// ErrNotFound indicates that the requested context does not exist in storage.
|
|
// Tests and higher-level components rely on this sentinel for consistent handling
|
|
// across local, distributed, and encrypted backends.
|
|
var ErrNotFound = errors.New("storage: not found")
|