| 14 | ) |
| 15 | |
| 16 | type AddOptions struct { |
| 17 | IO *iostreams.IOStreams |
| 18 | Config func() (gh.Config, error) |
| 19 | HTTPClient func() (*http.Client, error) |
| 20 | |
| 21 | KeyFile string |
| 22 | Title string |
| 23 | Type string |
| 24 | } |
| 25 | |
| 26 | func NewCmdAdd(f *cmdutil.Factory, runF func(*AddOptions) error) *cobra.Command { |
| 27 | opts := &AddOptions{ |
nothing calls this directly
no outgoing calls
no test coverage detected