postwill/postwill

View on GitHub
lib/postwill/response.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Postwill
  class Response
    def self.call(type, value)
      {
        status: type,
        response: value
      }
    end
  end
end