10 lines
80 B
Go
10 lines
80 B
Go
package db
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrNotInDB = errors.New("not in db")
|
|
)
|