chore: move conf package

This commit is contained in:
Noah Hsu
2022-06-25 20:38:02 +08:00
parent 7dadab95b2
commit 306b90399c
18 changed files with 91 additions and 33 deletions

View File

@ -12,5 +12,5 @@ var (
)
func IsObjectNotFound(err error) bool {
return pkgerr.Cause(err) == ObjectNotFound
return errors.Is(pkgerr.Cause(err), ObjectNotFound)
}