The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestAppShowInternalActions::Controller::Root;
use Moose;
use namespace::autoclean;

BEGIN { extends 'Catalyst::Controller' }

__PACKAGE__->config(namespace => '');

sub index :Path :Args(0) {
    my ( $self, $c ) = @_;

    $c->response->body( 'hello world' );
}

sub end : Action {}

__PACKAGE__->meta->make_immutable;

1;