mirror of
https://github.com/LukeHagar/sailpoint-cli.git
synced 2025-12-07 20:57:46 +00:00
Help > Usage, Naming, Markdown Help, Spelling, File name Sanitization
This commit is contained in:
@@ -2,12 +2,10 @@
|
||||
package sdk
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
func NewSDKCmd() *cobra.Command {
|
||||
func NewSDKCommand() *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "sdk",
|
||||
Short: "Initialize or configure SDK projects",
|
||||
@@ -15,12 +13,12 @@ func NewSDKCmd() *cobra.Command {
|
||||
Example: "sail sdk",
|
||||
Args: cobra.MaximumNArgs(1),
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
_, _ = fmt.Fprint(cmd.OutOrStdout(), cmd.UsageString())
|
||||
cmd.Help()
|
||||
},
|
||||
}
|
||||
|
||||
cmd.AddCommand(
|
||||
newInitCmd(),
|
||||
newInitCommand(),
|
||||
)
|
||||
|
||||
return cmd
|
||||
|
||||
Reference in New Issue
Block a user