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.
28 lines
442 B
28 lines
442 B
package main |
|
|
|
import ( |
|
"fmt" |
|
"os" |
|
|
|
"github.com/spf13/cobra" |
|
) |
|
|
|
func commandRoot() *cobra.Command { |
|
rootCmd := &cobra.Command{ |
|
Use: "dex", |
|
Run: func(cmd *cobra.Command, args []string) { |
|
cmd.Help() |
|
os.Exit(2) |
|
}, |
|
} |
|
rootCmd.AddCommand(commandServe()) |
|
rootCmd.AddCommand(commandVersion()) |
|
return rootCmd |
|
} |
|
|
|
func main() { |
|
if err := commandRoot().Execute(); err != nil { |
|
fmt.Fprintln(os.Stderr, err.Error()) |
|
os.Exit(2) |
|
} |
|
}
|
|
|