1
0
mirror of https://github.com/nikoksr/notify.git synced 2025-04-02 22:05:35 +02:00

chore(lint): apply changes suggested by golangci-lint

This commit is contained in:
Niko Köser 2021-01-29 19:53:31 +01:00
parent e83d90888b
commit 94e2bf0c5c
No known key found for this signature in database
GPG Key ID: F3F28C118DAA6375
2 changed files with 2 additions and 3 deletions
notify.go
service/slack

@ -13,7 +13,7 @@ type Notify struct {
}
// ErrSendNotification signals that the notifier failed to send a notification.
var ErrSendNotification = errors.New("Send notification")
var ErrSendNotification = errors.New("send notification")
// Notifier defines the behavior for notification services. The Send command simply sends a message string to the
// internal destination Notifier. E.g for telegram it sends the message to the specified group chat.

@ -38,13 +38,12 @@ func (s Slack) Send(subject, message string) error {
fullMessage := subject + "\n" + message // Treating subject as message title
for _, channelID := range s.channelIDs {
id, timestamp, err := s.client.PostMessage(
channelID,
slack.MsgOptionText(fullMessage, false),
)
if err != nil {
return errors.Wrapf(err, "failed to send message to Slack channel '%d' at time '%s'", id, timestamp)
return errors.Wrapf(err, "failed to send message to Slack channel '%s' at time '%s'", id, timestamp)
}
}