ringcentral-ruby/ringcentral-avatars-ruby

View on GitHub
lib/ringcentral-avatars.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'ringcentral-avatars/creator'

module RingCentral
  module Avatars
    VERSION = '0.5.0'.freeze

    class << self
      def new(client, opts = {})
        RingCentral::Avatars::Creator.new client, opts
      end
    end
  end
end