This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package HTTP::Body::JSON; | |
use strict; | |
use warnings; | |
use parent qw(HTTP::Body); | |
use JSON::XS; | |
use HTTP::Body; | |
use Encode qw(encode_utf8); | |
# based on tokuhirom-san's code |