The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestApp::Controller::Index;

use strict;
use base 'Catalyst::Base';

sub index : Private {
    my ( $self, $c ) = @_;
    $c->res->body( 'Index index' );
}

1;