| Catalyst-Plugin-XMLRPC documentation | Contained in the Catalyst-Plugin-XMLRPC distribution. |
Catalyst::Action::XMLRPC - XMLRPC Action Class
XMLRPC Action Class.
Sebastian Riedel, sri@oook.de
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| Catalyst-Plugin-XMLRPC documentation | Contained in the Catalyst-Plugin-XMLRPC distribution. |
package Catalyst::Action::XMLRPC; use strict; use Moose::Role; after execute => sub { my ( $self, $controller, $c ) = @_; $c->xmlrpc; };
1;