(cmd *cobra.Command, value interface{})
| 31 | } |
| 32 | |
| 33 | func (a *Argument) Ask(cmd *cobra.Command, value interface{}) error { |
| 34 | return askArgument(cmd, a, value) |
| 35 | } |
| 36 | |
| 37 | type pickerOptionsFunc func(ctx context.Context) (pickerOptions, error) |
| 38 |
nothing calls this directly
no test coverage detected