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

BEGIN { extends 'Catalyst::Controller' }

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

sub index :Path :Args(0) {}

sub end : ActionClass('RenderView') {}

__PACKAGE__->meta->make_immutable;

1;