mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
359 B
22 lines
359 B
|
10 years ago
|
package main
|
||
|
|
|
||
|
|
import "github.com/spf13/cobra"
|
||
|
|
|
||
|
|
var (
|
||
|
|
// set by the top level build script
|
||
|
|
version = ""
|
||
|
|
|
||
|
|
cmdVersion = &cobra.Command{
|
||
|
|
Use: "version",
|
||
|
|
Short: "Print the dexctl version.",
|
||
|
|
Long: "Print the dexctl version.",
|
||
|
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
|
stdout(version)
|
||
|
|
},
|
||
|
|
}
|
||
|
|
)
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
rootCmd.AddCommand(cmdVersion)
|
||
|
|
}
|