error.go 86 B

1234567
  1. package util
  2. import "errors"
  3. var (
  4. InsertFailError = errors.New("insert failed")
  5. )