gg/errors.go

12 lines
162 B
Go
Raw Normal View History

2023-10-23 15:45:18 +03:00
package gg
import (
"errors"
)
var (
ErrObjectExist = errors.New("the object already exists")
ErrObjectNotExist = errors.New("the object does not exist")
)