source: trunk/LATMOS-Accounts-Web/script/latmos_accounts_web_cgi.pl @ 1223

Last change on this file since 1223 was 94, checked in by nanardon, 15 years ago
  • init web interface
  • Property svn:executable set to *
File size: 541 bytes
Line 
1#!/usr/bin/perl -w
2
3BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
4
5use strict;
6use warnings;
7use FindBin;
8use lib "$FindBin::Bin/../lib";
9use LATMOS::Accounts::Web;
10
11LATMOS::Accounts::Web->run;
12
131;
14
15=head1 NAME
16
17latmos_accounts_web_cgi.pl - Catalyst CGI
18
19=head1 SYNOPSIS
20
21See L<Catalyst::Manual>
22
23=head1 DESCRIPTION
24
25Run a Catalyst application as a cgi script.
26
27=head1 AUTHOR
28
29Sebastian Riedel, C<sri@oook.de>
30
31=head1 COPYRIGHT
32
33
34This library is free software, you can redistribute it and/or modify
35it under the same terms as Perl itself.
36
37=cut
Note: See TracBrowser for help on using the repository browser.