(ctx context.Context, o *options.Options, args []string)
| 491 | } |
| 492 | |
| 493 | func (p *Parser) applyReturnAttachmentOption(ctx context.Context, o *options.Options, args []string) error { |
| 494 | return p.parseBool(ctx, o, keys.ReturnAttachment, args...) |
| 495 | } |
| 496 | |
| 497 | func (p *Parser) applyMaxSrcResolutionOption(ctx context.Context, o *options.Options, args []string) error { |
| 498 | if err := p.IsSecurityOptionsAllowed(ctx); err != nil { |
no test coverage detected