ringcentral-ruby/glip-sdk-ruby

View on GitHub
lib/glip_sdk.rb

Summary

Maintainability
A
0 mins
Test Coverage
module GlipSdk
  VERSION = '0.0.5'.freeze

  autoload :REST, 'glip_sdk/rest'

  class << self
    def new(client, opts = {})
      GlipSdk::REST::Client.new client, opts
    end
  end
end