Skip to content

Commit

Permalink
Rename command function
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Feb 22, 2021
1 parent d9a051c commit faffdd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/cli/quickstarts.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"gopkg.in/auth0.v5/management"
)

func quickstartCmd(cli *cli) *cobra.Command {
func quickstartsCmd(cli *cli) *cobra.Command {
cmd := &cobra.Command{
Use: "quickstarts",
Short: "Quickstart support for getting bootstrapped",
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func Execute() {
// order of the comamnds here matters
// so add new commands in a place that reflect its relevance or relation with other commands:
rootCmd.AddCommand(loginCmd(cli))
rootCmd.AddCommand(quickstartCmd(cli))
rootCmd.AddCommand(quickstartsCmd(cli))
rootCmd.AddCommand(appsCmd(cli))
rootCmd.AddCommand(apisCmd(cli))
rootCmd.AddCommand(testCmd(cli))
Expand Down

0 comments on commit faffdd8

Please sign in to comment.