Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CreateCmd = &cobra.Command{ Use: "create <name> <input>", Short: "Create a Studios secret", Long: createLong, Run: func(cmd *cobra.Command, args []string) { var err error if 0 >= len(args) { fmt.Println("missing required argument: 'Name'") cmd.Usage() os.Exit(1) } var name string if 0 < len(args) { name = args[0] } if 1 >= len(args) { fmt.Println("missing required argument: 'Input'") cmd.Usage() os.Exit(1) } var input string if 1 < len(args) { input = args[1] } err = CreateRun(name, input) if err != nil { fmt.Println(err) os.Exit(1) } }, }
View Source
var DeleteCmd = &cobra.Command{ Use: "delete <name or id>", Short: "Delete a Studios secret. Must not be in use", Long: deleteLong, Run: func(cmd *cobra.Command, args []string) { var err error if 0 >= len(args) { fmt.Println("missing required argument: 'Ident'") cmd.Usage() os.Exit(1) } var ident string if 0 < len(args) { ident = args[0] } err = DeleteRun(ident) if err != nil { fmt.Println(err) os.Exit(1) } }, }
View Source
var GetCmd = &cobra.Command{ Use: "get <name or id>", Short: "Get a Studios secret", Long: getLong, Run: func(cmd *cobra.Command, args []string) { var err error if 0 >= len(args) { fmt.Println("missing required argument: 'Ident'") cmd.Usage() os.Exit(1) } var ident string if 0 < len(args) { ident = args[0] } err = GetRun(ident) if err != nil { fmt.Println(err) os.Exit(1) } }, }
View Source
var ListCmd = &cobra.Command{ Use: "list", Short: "List your secrets", Long: listLong, Run: func(cmd *cobra.Command, args []string) { var err error err = ListRun(args) if err != nil { fmt.Println(err) os.Exit(1) } }, }
View Source
var UpdateCmd = &cobra.Command{ Use: "update <name> <input>", Short: "Update a Studios secret", Long: updateLong, Run: func(cmd *cobra.Command, args []string) { var err error if 0 >= len(args) { fmt.Println("missing required argument: 'Name'") cmd.Usage() os.Exit(1) } var name string if 0 < len(args) { name = args[0] } if 1 >= len(args) { fmt.Println("missing required argument: 'Input'") cmd.Usage() os.Exit(1) } var input string if 1 < len(args) { input = args[1] } err = UpdateRun(name, input) if err != nil { fmt.Println(err) os.Exit(1) } }, }
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.