Newer
Older
package cmd
import (
"fmt"
)
// VersionCmd is the "version" command
type VersionCmd struct{}
// Execute the 'version' commands
func (cmd *VersionCmd) Execute([]string) error {
fmt.Printf("Beaver %s \nBuild Date: %s\nCommit SHA: %s\n", Version, BuildDate, CommitSha)