huhu/cgi-bin/modtable.pl
Thomas Hochstein d1286528e2 Add executable bits.
Signed-off-by: Thomas Hochstein <thh@thh.name>
2022-01-29 10:24:17 +01:00

12 lines
251 B
Perl
Executable file

#!/usr/bin/perl -w
use strict;
use warnings;
use CGI::Carp 'fatalsToBrowser';
$ENV{'CONTENT_TYPE'} = "multipart/form-data";
BEGIN { push (@INC, $ENV{'HUHU_DIR'}); }
use MOD::Handler;
my $h = MOD::Handler->new( $ENV{'HUHU_PUB_CONFIG'} );
$h->run();