Fix my retardedness with ::MVC:: warning having no conditional. Pull all the stuff...
[catagits/Catalyst-Runtime.git] / t / lib / DeprecatedTestApp / C / Root.pm
CommitLineData
19a24dbb 1package DeprecatedTestApp::C::Root;
2use strict;
3use warnings;
4use base qw/Catalyst::Controller/;
5
6__PACKAGE__->config->{namespace} = '';
7
8sub index : Private {
9 my ( $self, $c ) = @_;
10 $c->res->body('root index');
11}
12
131;