3375a72aea
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
17 lines
256 B
Go
17 lines
256 B
Go
package cli
|
|
|
|
import (
|
|
"gopkg.in/urfave/cli.v2"
|
|
)
|
|
|
|
var versionCmd = &cli.Command{
|
|
Name: "version",
|
|
Usage: "Print version",
|
|
Action: func(context *cli.Context) error {
|
|
// TODO: print more useful things
|
|
|
|
cli.VersionPrinter(context)
|
|
return nil
|
|
},
|
|
}
|