Files
bookish/bookish-server/mysql/errors.go
T

11 lines
163 B
Go

package mysql
import (
"errors"
)
var (
ErrNotFound = errors.New("no renter found")
ErrAlreadyExists = errors.New("the provided value already exists")
)