diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-01 20:12:34 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-01 21:03:20 +0200 |
commit | ec2ed6c255ca97f39d4a58071f8558744bd9958d (patch) | |
tree | f8e248356f6b8ec8600cf485716aedcf9dba992f /cgi-bin | |
parent | 79344b1efee7e914b8d23bd0dfd92664cf698c11 (diff) |
cgi-bin
Diffstat (limited to 'cgi-bin')
-rwxr-xr-x | cgi-bin/index.cgi | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cgi-bin/index.cgi b/cgi-bin/index.cgi new file mode 100755 index 0000000..9ac0e6e --- /dev/null +++ b/cgi-bin/index.cgi @@ -0,0 +1,18 @@ +#!/usr/bin/perl + +use strict; +use warnings; +use utf8; + +use lib 'lib'; +use FPanel::Interface; +# TODO: Try out Fast CGI +#use CGI::Fast(); +# +#while (my $q = new CGI::Fast){ +# my $app = new WebApp(QUERY => $q); +# $app->run(); +#} + +my $cgi = FPanel::Interface->new(); +$cgi->run(); |