chore: go mod vendor

This commit is contained in:
CrazyMax
2024-12-14 22:23:46 +01:00
parent 53e0a91781
commit 63e598cdee
5193 changed files with 1558094 additions and 12 deletions

18
vendor/github.com/gregdel/pushover/errors.go generated vendored Normal file
View File

@@ -0,0 +1,18 @@
package pushover
import (
"strings"
)
// Errors represents the errors returned by pushover.
type Errors []string
// Error represents the error as a string.
func (e Errors) Error() string {
ret := ""
if len(e) > 0 {
ret = "Errors:\n"
ret += strings.Join(e, "\n")
}
return ret
}