# # $Id: Maelstrom.pm,v 1.1 2008/05/13 22:40:55 msanders Exp $ # # Copyright (c) 2008 Juniper Networks, Inc. # All rights reserved. # =head1 NAME Maelstrom.pm =head1 SYNOPSIS =cut use strict; use warnings; package Maelstrom; use Catalyst::Runtime '5.70'; use Catalyst qw(-Debug Static::Simple); use FindBin qw/$RealBin/; our $VERSION = '0.01'; use MBA; use SCM; __PACKAGE__->config('name' => 'Maelstrom', 'mba' => MBA->initialize(), 'scm' => SCM->initialize(), 'root' => "$RealBin/../lib/maelstrom", 'View::TT' => {EVAL_PERL => 1}, ); __PACKAGE__->setup; =head1 DESCRIPTION =head1 SEE ALSO L<>, L =head1 AUTHOR Michael K. Sanders =head1 LICENSE Copyright (c) 2008 Juniper Networks, Inc. All rights reserved. =cut 1;