Initial import of Catalyst::Engine::Stomp
[catagits/Catalyst-Engine-STOMP.git] / testapp / lib / TestApp / Controller / TestController.pm
CommitLineData
0a663589 1package TestApp::Controller::TestController;
2use Moose;
3
4BEGIN { extends 'Catalyst::Controller::MessageDriven' };
5
6sub testaction : Local {
7 my ($self, $c) = @_;
8
9 # Reply with a minimal response message
10 my $response = { type => 'testaction_response' };
11 $c->stash->{response} = $response;
12}
13
141;