summaryrefslogtreecommitdiff
path: root/lib/booru/image_processing/webm_processor.rb
blob: 2016144731f089896186234f4271d546ad5420ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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