William Petit
e66938f1d3
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
9 lines
130 B
Go
9 lines
130 B
Go
package store
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrAlreadyExist = errors.New("already exist")
|
|
ErrNotFound = errors.New("not found")
|
|
)
|