errors.go 94 B

1234567
  1. package presets
  2. import "errors"
  3. var (
  4. ErrRecordNotFound = errors.New("record not found")
  5. )