abra/cli/version.go
Roxie Gibson 38d8b51bd5
refactor: moved a lot of flags & added comments
Comments added to fix the golint errors on exported things need comments
2021-08-02 07:36:35 +01:00

16 lines
262 B
Go

package cli
import (
"github.com/urfave/cli/v2"
)
// VersionCommand prints the version of abra
var VersionCommand = &cli.Command{
Name: "version",
Usage: "Print the version",
Action: func(c *cli.Context) error {
cli.VersionPrinter(c)
return nil
},
}