Mangle package declerations to hide testapp from PAUSE
[catagits/Catalyst-Engine-STOMP.git] / testapp / lib / StompTestApp / Controller / TestController.pm
CommitLineData
cb2c6d47 1package # Hide from PAUSE
2 StompTestApp::Controller::TestController;
0a663589 3use Moose;
cb2c6d47 4use namespace::autoclean;
0a663589 5
6BEGIN { extends 'Catalyst::Controller::MessageDriven' };
7
8sub testaction : Local {
9 my ($self, $c) = @_;
10
11 # Reply with a minimal response message
12 my $response = { type => 'testaction_response' };
13 $c->stash->{response} = $response;
14}
15
161;