ActiveCampaign/postmark-gem

View on GitHub
lib/postmark/response_parsers/json.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'json'
module Postmark
  module ResponseParsers
    module Json
      def self.decode(data)
        JSON.parse(data)
      end
    end
  end
end