errors.go 262 B

123456789
  1. package notification
  2. import "github.com/uozi-tech/cosy"
  3. var (
  4. e = cosy.NewErrorScope("notification")
  5. ErrNotifierNotFound = e.New(404001, "notifier not found")
  6. ErrInvalidNotifierConfig = e.New(400001, "invalid notifier config")
  7. )