mirror of
https://github.com/gotify/cli.git
synced 2024-01-28 15:20:39 +03:00
15 lines
218 B
Go
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,
|
|
}
|
|
}
|