class ImageProcessing::Builder

def call!(**options)

Calls the pipeline to perform the processing from built options.
def call!(**options)
  Pipeline.new(self.options).call(**options)
end

def initialize(options)

def initialize(options)
  @options = options
end