1
0
Fork 0
golang-github-nicholas-fedo.../pkg/services/pushover/pushover_error.go
Daniel Baumann c0c4addb85
Adding upstream version 0.8.9.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-22 10:16:14 +02:00

11 lines
374 B
Go

package pushover
// ErrorMessage for error events within the pushover service.
type ErrorMessage string
const (
// UserMissing should be used when a config URL is missing a user.
UserMissing ErrorMessage = "user missing from config URL"
// TokenMissing should be used when a config URL is missing a token.
TokenMissing ErrorMessage = "token missing from config URL"
)