1
0
mirror of https://github.com/Luzifer/vault-openvpn.git synced 2024-09-19 09:32:56 +00:00
vault-openvpn/cmd/version.go

21 lines
350 B
Go
Raw Permalink Normal View History

package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
// versionCmd represents the version command
var versionCmd = &cobra.Command{
Use: "version",
Short: "Displays the version of the utility",
Run: func(cmd *cobra.Command, args []string) {
fmt.Printf("vault-openvpn %s\n", version)
},
}
func init() {
RootCmd.AddCommand(versionCmd)
}