(args []string)
| 41 | } |
| 42 | |
| 43 | func (c *PluginsRequiredCommand) Run(args []string) int { |
| 44 | ctx, cleanup := handleTermInterrupt(c.Ui) |
| 45 | defer cleanup() |
| 46 | |
| 47 | cfg, ret := c.ParseArgs(args) |
| 48 | if ret != 0 { |
| 49 | return ret |
| 50 | } |
| 51 | |
| 52 | return c.RunContext(ctx, cfg) |
| 53 | } |
| 54 | |
| 55 | func (c *PluginsRequiredCommand) ParseArgs(args []string) (*PluginsRequiredArgs, int) { |
| 56 | var cfg PluginsRequiredArgs |
nothing calls this directly
no test coverage detected