Files
gotify-cli/command/version.go
2018-11-24 20:16:18 +01:00

15 lines
218 B
Go

package command
import (
"gopkg.in/urfave/cli.v1"
)
func Version() cli.Command {
return cli.Command{
Name: "version",
Aliases: []string{"v"},
Usage: "Shows the version",
Action: cli.ShowVersion,
}
}