File: join_errors.go

package info (click to toggle)
golang-github-nicholas-fedor-shoutrrr 0.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,680 kB
  • sloc: sh: 74; makefile: 58
file content (12 lines) | stat: -rw-r--r-- 418 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
package join

// ErrorMessage for error events within the pushover service.
type ErrorMessage string

const (
	// APIKeyMissing should be used when a config URL is missing a token.
	APIKeyMissing ErrorMessage = "API key missing from config URL" //nolint:gosec // false positive

	// DevicesMissing should be used when a config URL is missing devices.
	DevicesMissing ErrorMessage = "devices missing from config URL"
)