mirror of
https://github.com/Luzifer/password.git
synced 2024-11-08 17:30:10 +00:00
22 lines
376 B
Go
22 lines
376 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func getCmdVersion() *cobra.Command {
|
|
cmd := cobra.Command{
|
|
Use: "version",
|
|
Aliases: []string{"v"},
|
|
Short: "prints the current version of awsenv",
|
|
Run: actionCmdVersion,
|
|
}
|
|
|
|
return &cmd
|
|
}
|
|
|
|
func actionCmdVersion(cmd *cobra.Command, args []string) {
|
|
fmt.Printf("password version %s\n", version)
|
|
}
|