The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package RestTest::Controller::API::RPC;
our $VERSION = '2.001003';

use strict;
use warnings;
use base qw/Catalyst::Controller/;

sub rpc_base : Chained('/api/api_base') PathPart('rpc') CaptureArgs(0) {
    my ( $self, $c ) = @_;

}

sub end :Private {
	my ( $self, $c ) = @_;
	
}

1;