The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestApp4::View::Default;

use base qw( Catalyst::View );

sub process {
    my( $self, $c ) = @_;
    $c->res->body('Everything is OK');
}

1;