summaryrefslogtreecommitdiffstats
path: root/t/lib/MyApp.pm
blob: 279ab6a78679fa6a36cb9d17621de1e89fe83d20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package MyApp;
use Moose;
use namespace::autoclean;

extends 'Catalyst';

__PACKAGE__->config(
    name => 'MyApp',
);

__PACKAGE__->setup;

1;