diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-01 01:50:40 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-01 01:50:40 +0200 |
commit | cc2eac1dcd3991e036875931fb78c609ff9dbbea (patch) | |
tree | b9c95affc22263b96edeff8f9f8b7487c23cdf12 /index.cgi |
First try.
Diffstat (limited to 'index.cgi')
-rwxr-xr-x | index.cgi | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/index.cgi b/index.cgi new file mode 100755 index 0000000..9ac0e6e --- /dev/null +++ b/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(); |