mirror of https://github.com/kha7iq/pingme
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
822 B
38 lines
822 B
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/kha7iq/pingme/cmd"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var Version string
|
|
|
|
func main() {
|
|
app := cli.NewApp()
|
|
app.Name = "PingMe"
|
|
app.Version = Version
|
|
app.Usage = "Send message to multiple platforms"
|
|
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.`
|
|
|
|
app.Commands = []*cli.Command{
|
|
cmd.SendToTelegram(),
|
|
cmd.SendToRocketChat(),
|
|
cmd.SendToSlack(),
|
|
cmd.SendToDiscord(),
|
|
cmd.SendToTeams(),
|
|
cmd.SendToEmail(),
|
|
}
|
|
|
|
err := app.Run(os.Args)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|