The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package TestAppWithoutUnicode;
use strict;
use warnings;
use TestLogger;
use base qw/Catalyst/;
use Catalyst qw//;

__PACKAGE__->config('name' => 'TestAppWithoutUnicode');

__PACKAGE__->log(TestLogger->new);

__PACKAGE__->setup;

1;