9 lines
169 B
Go
9 lines
169 B
Go
|
package repo_errors
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
EntityNotFoundError = errors.New("entity not found")
|
||
|
EntityAlreadyExistsError = errors.New("entity already exists")
|
||
|
)
|