authelia/cmd/authelia-gen/cmd_code.go
James Elliott 5304178165
ci: add dedicated authelia-gen command (#3463)
Adds a dedicated authelia code/doc gen command.
2022-06-14 22:40:00 +10:00

33 lines
517 B
Go

package main
import (
"github.com/spf13/cobra"
)
func newCodeCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "code",
Short: "Generate code",
RunE: codeRunE,
}
cmd.AddCommand(newCodeKeysCmd())
return cmd
}
func codeRunE(cmd *cobra.Command, args []string) (err error) {
for _, subCmd := range cmd.Commands() {
switch {
case subCmd.RunE != nil:
if err = subCmd.RunE(subCmd, args); err != nil {
return err
}
case subCmd.Run != nil:
subCmd.Run(subCmd, args)
}
}
return nil
}