package GroLUG; use strict; use warnings; use Catalyst qw/-Debug ConfigLoader Static::Simple DefaultEnd Session Session::Store::DBI Session::State::Cookie/; our $VERSION = '0.01'; __PACKAGE__->setup; sub default : Private { my ( $self, $c ) = @_; # Hello World $c->response->body( $c->welcome_message ); } 1;