| 16 | ) |
| 17 | |
| 18 | type CancelOptions struct { |
| 19 | HttpClient func() (*http.Client, error) |
| 20 | IO *iostreams.IOStreams |
| 21 | BaseRepo func() (ghrepo.Interface, error) |
| 22 | Prompter shared.Prompter |
| 23 | |
| 24 | Prompt bool |
| 25 | |
| 26 | RunID string |
| 27 | Force bool |
| 28 | } |
| 29 | |
| 30 | func NewCmdCancel(f *cmdutil.Factory, runF func(*CancelOptions) error) *cobra.Command { |
| 31 | opts := &CancelOptions{ |
nothing calls this directly
no outgoing calls
no test coverage detected