Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
invoice2go / lib / invoice2go / client / accounts.rb
Size: Mime:
module Invoice2go
  class Client
    module Accounts
      def accounts(params = {})
        get("accounts", params)
      end

      def account(id, params = {})
        get("accounts/#{id}", params)
      end
    end
  end
end