mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-09-21 19:12:29 +02:00
Undo main.go
This commit is contained in:
parent
a5a55bd43a
commit
998dbd9054
1 changed files with 10 additions and 23 deletions
33
main.go
33
main.go
|
@ -3,11 +3,9 @@ package main
|
|||
import (
|
||||
"fmt"
|
||||
"github.com/urfave/cli/v2"
|
||||
"go/build"
|
||||
"heckel.io/ntfy/v2/cmd"
|
||||
"os"
|
||||
"runtime"
|
||||
"strings"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -17,7 +15,16 @@ var (
|
|||
)
|
||||
|
||||
func main() {
|
||||
cli.AppHelpTemplate += buildHelp()
|
||||
cli.AppHelpTemplate += fmt.Sprintf(`
|
||||
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.
|
||||
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
|
||||
Copyright (C) Philipp C. Heckel, licensed under Apache License 2.0 & GPLv2
|
||||
`, version, commit[:7], runtime.Version(), date)
|
||||
|
||||
app := cmd.New()
|
||||
app.Version = version
|
||||
|
@ -27,23 +34,3 @@ func main() {
|
|||
os.Exit(1)
|
||||
}
|
||||
}
|
||||
|
||||
func buildHelp() string {
|
||||
if len(commit) > 7 {
|
||||
commit = commit[:7]
|
||||
}
|
||||
var tags string
|
||||
if len(build.Default.BuildTags) > 0 {
|
||||
tags = ", with tags " + strings.Join(build.Default.BuildTags, ", ")
|
||||
}
|
||||
return fmt.Sprintf(`
|
||||
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.
|
||||
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%s
|
||||
Copyright (C) Philipp C. Heckel, licensed under Apache License 2.0 & GPLv2
|
||||
`, version, commit, runtime.Version(), date, tags)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue