# frozen_string_literal: true

module Truemail
  class Executor
    attr_reader :result

    def run; end

    def as_json; end
  end
end