update distar url
[catagits/Catalyst-Runtime.git] / t / lib / TestAppPluginWithConstructor / Controller / Root.pm
1 package TestAppPluginWithConstructor::Controller::Root;
2
3 use base 'Catalyst::Controller';
4
5 __PACKAGE__->config->{namespace} = '';
6
7 sub foo : Local {
8     my ($self, $c) = @_;
9     $c->res->body('foo');
10 }
11
12 1;