aboutsummaryrefslogtreecommitdiffstats
path: root/cgi-bin/index.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'cgi-bin/index.cgi')
-rwxr-xr-xcgi-bin/index.cgi18
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();