Catalyst::Action::XMLRPC - XMLRPC Action Class


Catalyst-Plugin-XMLRPC documentation Contained in the Catalyst-Plugin-XMLRPC distribution.

Index


Code Index:

NAME

Top

Catalyst::Action::XMLRPC - XMLRPC Action Class

SYNOPSIS

Top

See Catalyst::Plugin::XMLRPC

DESCRIPTION

Top

XMLRPC Action Class.

AUTHOR

Top

Sebastian Riedel, sri@oook.de

LICENSE

Top

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;