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