| 17 | ) |
| 18 | |
| 19 | type Command struct { |
| 20 | globalFlags *flags.GlobalFlags |
| 21 | commandFlags *Flags |
| 22 | awsClient *aws.Client |
| 23 | clusterNameArg *string |
| 24 | instanceCount *uint16 |
| 25 | } |
| 26 | |
| 27 | func (c *Command) Init(ka *kingpin.Application, globalFlags *flags.GlobalFlags) *kingpin.CmdClause { |
| 28 | c.globalFlags = globalFlags |
nothing calls this directly
no outgoing calls
no test coverage detected