Files
hanko/backend/cmd/jwk/root.go
2022-06-09 14:36:00 +02:00

21 lines
327 B
Go

package jwk
import (
"github.com/spf13/cobra"
)
func NewMigrateCmd() *cobra.Command {
return &cobra.Command{
Use: "jwk",
Short: "Tools for handling JSON Web Keys",
Long: ``,
}
}
func RegisterCommands(parent *cobra.Command) {
cmd := NewMigrateCmd()
parent.AddCommand(cmd)
cmd.AddCommand(NewCreateCommand())
}