From 150e3d424a393ab76ea6eae840bf475aa83ea00b Mon Sep 17 00:00:00 2001 From: Valentyn Nastenko Date: Thu, 15 Apr 2021 19:27:25 +0300 Subject: [PATCH] fix: fixed some mistakes in pushover service --- cmd/pushover.go | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/pushover.go b/cmd/pushover.go index 511bee8..cee8707 100644 --- a/cmd/pushover.go +++ b/cmd/pushover.go @@ -9,7 +9,7 @@ import ( "github.com/urfave/cli/v2" ) -// slackPingMe struct holds data parsed via flags for slack service. +// pushOver struct holds data parsed via flags for pushover service type pushOver struct { Token string Recipient string diff --git a/main.go b/main.go index 10b8a29..3249f5b 100644 --- a/main.go +++ b/main.go @@ -20,7 +20,7 @@ func main() { app.Description = `PingMe is a CLI tool which provides the ability to send messages or alerts to multiple messaging platforms and also email, everything is configurable via environment variables and command line switches.Currently supported platforms include Slack, Telegram, -RocketChat, Discord, Microsoft Teams and email address.` +RocketChat, Discord, Pushover, Microsoft Teams and email address.` // app.Commands contains the subcommands as functions which return []*cli.Command. app.Commands = []*cli.Command{ cmd.SendToTelegram(),