-
Notifications
You must be signed in to change notification settings - Fork 787
/
delete_git.go
41 lines (35 loc) · 990 Bytes
/
delete_git.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package deletecmd
import (
"github.com/jenkins-x/jx/v2/pkg/cmd/helper"
"github.com/jenkins-x/jx/v2/pkg/cmd/opts"
"github.com/spf13/cobra"
)
// DeleteGitOptions are the flags for delete commands
type DeleteGitOptions struct {
*opts.CommonOptions
}
// NewCmdDeleteGit creates a command object for the generic "get" action, which
// retrieves one or more resources from a server.
func NewCmdDeleteGit(commonOpts *opts.CommonOptions) *cobra.Command {
options := &DeleteGitOptions{
commonOpts,
}
cmd := &cobra.Command{
Use: "git",
Short: "Deletes one or more Git resources",
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
helper.CheckErr(err)
},
SuggestFor: []string{"remove", "rm"},
}
cmd.AddCommand(NewCmdDeleteGitServer(commonOpts))
cmd.AddCommand(NewCmdDeleteGitToken(commonOpts))
return cmd
}
// Run implements this command
func (o *DeleteGitOptions) Run() error {
return o.Cmd.Help()
}