# frozen_string_literal: true
require_relative 'video_processor'
module Booru
module ImageProcessing
class WebMProcessor < VideoProcessor
def generate_full_version(destination_path)
write_log 'generate_full_version'
FileUtils.ln_sf(@original_path, destination_path)
end
end
end
end