6 lines
71 B
Go
6 lines
71 B
Go
|
package db
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var ErrNotFound = errors.New("not found")
|