espago/espago

View on GitHub
lib/espago/api_connection/plans_get.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Espago
  class ApiConnection
    class PlansGet < ApiGet
      def request(params = {})
        super('plans',params,params[:plan_id])
      end
    end
  end
end