Sha256: 63ff604c57ba576c72043093ef4bc91a816a5187c2a27a4b9fb2febff8bd8de2

Contents?: true

Size: 368 Bytes

Versions: 1

Compression:

Stored size: 368 Bytes

Contents

# frozen_string_literal: true

module Dor
  module Services
    class Client
      # @abstract API calls to a versioned endpoint
      class VersionedService
        def initialize(connection:, version:)
          @connection = connection
          @version = version
        end

        private

        attr_reader :connection, :version
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dor-services-client-0.4.0 lib/dor/services/client/versioned_service.rb