99b610db991a6e386e3430f7c7042858eb938a6b
[catagits/Catalyst-Component-ACCEPT_CONTEXT.git] / t / lib / TestApp / Controller / Root.pm
1 package TestApp::Controller::Root;
2 use strict;
3 use warnings;
4
5 __PACKAGE__->config(namespace => q{});
6
7 use base 'Catalyst::Controller';
8
9 # your actions replace this one
10 sub main :Path { $_[1]->res->body('<h1>It works</h1>') }
11
12 1;