hydra/src/Hydra/lib/Hydra.pm

28 lines
487 B
Perl
Raw Normal View History

2008-11-25 11:01:42 +00:00
package Hydra;
use strict;
use warnings;
use Catalyst::Runtime '5.70';
use parent qw/Catalyst/;
use Catalyst qw/-Debug
ConfigLoader
Static::Simple
StackTrace
2008-11-26 19:48:04 +00:00
Authentication
Session
Session::Store::FastMmap
Session::State::Cookie
/;
our $VERSION = '0.01';
2008-11-18 14:48:40 +00:00
__PACKAGE__->config(
2008-11-25 11:01:42 +00:00
name => 'Hydra',
2008-11-18 14:48:40 +00:00
default_view => "TT"
);
__PACKAGE__->setup();
1;