----------------------------------+
#
# Apache2::WebApp::Plugin::JSON - JSON module wrapper
#
# DESCRIPTION
# Interface to the JSON (JavaScript Object Notation) encoder/decoder.
#
# AUTHOR
# Ma
--------------------------+
package Apache2::WebApp::Plugin::JSON;
use strict;
use warnings;
use base 'Apache2::WebApp::Plugin';
use JSON;
our $VERSION = 0.10;
#~~~~~~~~~~~~~~~~~~~~~~~~~~[ OBJECT
Return to the caller a new JSON object.
sub _init {
my ( $self, $params ) = @_;
return new JSON;
}
1;
__END__
=head1 NAME
Apache2::WebApp::Plugin::JSON - JSON module wrapper
=head1 SYNO