summaryrefslogtreecommitdiff
path: root/menu.pl
diff options
context:
space:
mode:
Diffstat (limited to 'menu.pl')
-rwxr-xr-xmenu.pl10
1 files changed, 10 insertions, 0 deletions
diff --git a/menu.pl b/menu.pl
new file mode 100755
index 0000000..ebd777f
--- /dev/null
+++ b/menu.pl
@@ -0,0 +1,10 @@
+#!/usr/bin/perl
+use strict;
+use CGI qw(:standard);
+use CGI::Carp 'fatalsToBrowser';
+use local::menu;
+
+print header;
+my $menu= new local::menu(%ENV);
+print $menu->start_html('nzbget status');
+print $menu->end_html;