blob: 9ac0e6ea53eb23d8bc298e095277096e0961de2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
|