11 lines
154 B
Go
11 lines
154 B
Go
package db
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrNotFound = errors.New("the value does not exist")
|
|
ErrAlreadyExists = errors.New("row already exists")
|
|
)
|