1package JSONRPC;
2
3use strict;
4
5$JSONRPC::VERSION = '1.01';
6
7warn "JSONRPC is deprecated. Please try to use JSON::RPC.";
8
91;
10__END__
11
12=pod
13
14=head1 NAME
15
16JSONRPC - (DEPRECATED) Perl implementation of JSON-RPC protocol
17
18=head1 DESCRIPTION
19
20C<JSONRPC> is an old version module. Instead this, please see to L<JSON::RPC>.
21This package remains to guide to the new module C<JSON::RPC> which supports both
22JSON-RPC protocol version 1.1 and 1.0.
23
24
25=head1 AUTHOR
26
27Makamaka Hannyaharamitu, E<lt>makamaka[at]cpan.orgE<gt>
28
29
30=head1 COPYRIGHT AND LICENSE
31
32Copyright 2007 by Makamaka Hannyaharamitu
33
34This library is free software; you can redistribute it and/or modify
35it under the same terms as Perl itself.
36
37=cut
38
39
40
41
42