forked from coop-cloud/abra
15 lines
217 B
Go
15 lines
217 B
Go
|
package cli
|
||
|
|
||
|
import (
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
var VersionCommand = &cli.Command{
|
||
|
Name: "version",
|
||
|
Usage: "Print the version",
|
||
|
Action: func(c *cli.Context) error {
|
||
|
cli.VersionPrinter(c)
|
||
|
return nil
|
||
|
},
|
||
|
}
|