diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-04 22:29:24 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-04 22:29:24 +0200 |
commit | 88ede2ea026377c7a9ca59ad74cd822545f3cbc9 (patch) | |
tree | 8541e22d0e92030c8362d58fe89815bcd6c12919 /cgi-bin/index.cgi | |
parent | ff6e499692065df321dc670df37118ba7d701516 (diff) |
License (GNU GPL)
Diffstat (limited to 'cgi-bin/index.cgi')
-rwxr-xr-x | cgi-bin/index.cgi | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cgi-bin/index.cgi b/cgi-bin/index.cgi index 6f3053f..89290e8 100755 --- a/cgi-bin/index.cgi +++ b/cgi-bin/index.cgi @@ -1,9 +1,16 @@ #!/usr/bin/perl +use 5.010_000; use strict; use warnings; use utf8; +=head1 NAME + +index.cgi - + +=cut + use lib 'lib'; use FPanel::Interface; @@ -22,3 +29,20 @@ my $cgi = FPanel::Interface->new( PARAMS => { cfg_file => [ @config ], format => 'equal' } ); $cgi->run(); + +=head1 AUTHOR + +Guilhem Moulin C<< <guilhem at fripost.org> >> + +=head1 COPYRIGHT + +Copyright 2012 Guilhem Moulin. + +=head1 LICENSE + +This program is free software; you can redistribute it and/or modify it +under the same terms as perl itself. + +=cut + +__END__ |