1
0
Fork 1
mirror of https://github.com/0x2E/fusion.git synced 2025-06-08 05:27:15 +09:00
fusion/repo/error.go
2024-03-12 22:57:53 +08:00

8 lines
152 B
Go

package repo
import "errors"
var (
ErrNotFound = errors.New("resource not exists")
ErrDuplicatedKey = errors.New("exists duplicated key(s)")
)