mirror of
https://github.com/juanfont/headscale.git
synced 2025-08-05 13:49:57 +02:00
24 lines
478 B
Go
24 lines
478 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/juanfont/headscale/hscontrol/types"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(versionCmd)
|
|
}
|
|
|
|
var versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "Print the version",
|
|
Long: "The version of headscale",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
output := GetOutputFlag(cmd)
|
|
SuccessOutput(map[string]string{
|
|
"version": types.Version,
|
|
"commit": types.GitCommitHash,
|
|
}, types.Version, output)
|
|
},
|
|
}
|