hybridgroup/artoo

View on GitHub
lib/artoo/drivers/passthru.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'artoo/drivers/driver'

module Artoo
  module Drivers
    # The Passthru driver just passes calls along to the parent's connection.
    class Passthru < Driver
    end
  end
end