leaf-library-3/internal/errs/collection.go
2024-12-10 18:22:14 +08:00

8 lines
101 B
Go

package errs
import "errors"
var (
ErrCollectionNotExists = errors.New("collection not exists")
)