open-nomad/command/version.go
Alex Dadgar 1a86aecf55 Add version package
This PR adds a version package and consolidates version strings into a
Version struct.
2017-08-16 15:44:21 -07:00

26 lines
484 B
Go

package command
import (
"github.com/hashicorp/nomad/version"
"github.com/mitchellh/cli"
)
// VersionCommand is a Command implementation prints the version.
type VersionCommand struct {
Version *version.VersionInfo
Ui cli.Ui
}
func (c *VersionCommand) Help() string {
return ""
}
func (c *VersionCommand) Run(_ []string) int {
c.Ui.Output(c.Version.FullVersionNumber(true))
return 0
}
func (c *VersionCommand) Synopsis() string {
return "Prints the Nomad version"
}