ntfy/main.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
839 B
Go
Raw Permalink Normal View History

2021-10-23 11:54:02 +13:00
package main
import (
"fmt"
"github.com/urfave/cli/v2"
2023-11-17 14:54:58 +13:00
"heckel.io/ntfy/v2/cmd"
"os"
"runtime"
)
var (
version = "dev"
commit = "unknown"
date = "unknown"
2021-10-23 11:54:02 +13:00
)
func main() {
cli.AppHelpTemplate += fmt.Sprintf(`
2021-12-20 12:32:16 +13:00
Try 'ntfy COMMAND --help' or https://ntfy.sh/docs/ for more information.
To report a bug, open an issue on GitHub: https://github.com/binwiederhier/ntfy/issues.
2022-03-17 07:50:00 +13:00
If you want to chat, simply join the Discord server (https://discord.gg/cT7ECsZj9w), or
the Matrix room (https://matrix.to/#/#ntfy:matrix.org).
ntfy %s (%s), runtime %s, built at %s
2022-03-17 07:50:00 +13:00
Copyright (C) 2022 Philipp C. Heckel, licensed under Apache License 2.0 & GPLv2
`, version, commit[:7], runtime.Version(), date)
app := cmd.New()
app.Version = version
if err := app.Run(os.Args); err != nil {
fmt.Fprintln(os.Stderr, err.Error())
os.Exit(1)
2021-10-23 11:54:02 +13:00
}
}