Add option to break a chain if error occurs
[catagits/Catalyst-Runtime.git] / t / lib / Moo.pm
CommitLineData
eff60019 1package Moo;
2
3use Moose::Role;
4
5use namespace::autoclean;
6
7after execute => sub {
8 my ($self, $controller, $c) = @_;
9 $c->response->body(__PACKAGE__);
10};
11
121;