hydra/src/Hydra/lib/HydraFrontend.pm

24 lines
368 B
Perl
Raw Normal View History

package HydraFrontend;
use strict;
use warnings;
use Catalyst::Runtime '5.70';
use parent qw/Catalyst/;
use Catalyst qw/-Debug
ConfigLoader
Static::Simple
StackTrace
/;
our $VERSION = '0.01';
2008-11-18 14:48:40 +00:00
__PACKAGE__->config(
name => 'HydraFrontend',
default_view => "TT"
);
__PACKAGE__->setup();
1;