blob: 58cc95ab2ed519a93af89ea0895c68af0b7bd486 (
plain) (
tree)
|
|
package MooseX::Net::API::Parser::JSON;
# ABSTRACT: Parse JSON
use JSON;
use Moose;
extends 'MooseX::Net::API::Parser';
sub encode {
my ($self, $content) = @_;
return JSON::encode_json($content);
}
sub decode {
my ($self, $content) = @_;
return JSON::decode_json($content);
}
1;
=head1 SYNOPSIS
=head1 DESCRIPTION
|