sanger/sequencescape

View on GitHub
app/sample_manifest_excel/sample_manifest_excel/upload/processor/library_tube.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

require_dependency 'sample_manifest_excel/upload/processor/base'

module SampleManifestExcel
  module Upload
    module Processor
      # TODO: had to explicitly specify the namespace for Base here otherwise it picks up Upload::Base
      class LibraryTube < SampleManifestExcel::Upload::Processor::Base
      end
    end
  end
end