gitlab-org--gitlab-foss/lib/bitbucket/client.rb

12 lines
197 B
Ruby
Raw Normal View History

module Bitbucket
class Client
def initialize(options = {})
@connection = options.fetch(:connection, Connection.new(options))
end
private
attr_reader :connection
end
end