mongodb/mongo-ruby-driver

View on GitHub
profile/driver_bench/parallel/gridfs.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require_relative 'gridfs/download'
require_relative 'gridfs/upload'

module Mongo
  module DriverBench
    module Parallel
      module GridFS
        ALL = [ Download, Upload ].freeze
      end
    end
  end
end