diff options
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(); |