(ctx context.Context, o *options.Options, args []string)
| 16 | ) |
| 17 | |
| 18 | func (p *Parser) applyWidthOption(ctx context.Context, o *options.Options, args []string) error { |
| 19 | return p.parsePositiveInt(ctx, o, keys.Width, args...) |
| 20 | } |
| 21 | |
| 22 | func (p *Parser) applyHeightOption(ctx context.Context, o *options.Options, args []string) error { |
| 23 | return p.parsePositiveInt(ctx, o, keys.Height, args...) |
no test coverage detected