(state *globalState)
| 466 | } |
| 467 | |
| 468 | func (a *App) providerEnableCommand(state *globalState) *cobra.Command { |
| 469 | return &cobra.Command{ |
| 470 | Use: "enable NAME", |
| 471 | Short: "Mark a provider as enabled", |
| 472 | Args: cobra.ExactArgs(1), |
| 473 | RunE: toggleEnabledRunE(state, true), |
| 474 | } |
| 475 | } |
| 476 | |
| 477 | func (a *App) providerDisableCommand(state *globalState) *cobra.Command { |
| 478 | return &cobra.Command{ |
no test coverage detected