error.go 88 B

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