]> Dogcows Code - chaz/p5-CGI-Ex/blobdiff - samples/app/app1/app1.pl
CGI::Ex 2.24
[chaz/p5-CGI-Ex] / samples / app / app1 / app1.pl
diff --git a/samples/app/app1/app1.pl b/samples/app/app1/app1.pl
new file mode 100755 (executable)
index 0000000..d05de5e
--- /dev/null
@@ -0,0 +1,19 @@
+#!/usr/bin/perl
+
+=head1 NAME
+
+app1 - Signup application using bare CGI::Ex::App
+
+ * configuration comes from conf file
+ * steps are in separate modules
+
+=cut
+
+use strict;
+use warnings;
+use FindBin qw($Bin);
+use lib "$Bin/lib";
+use base qw(App1);
+
+App1->navigate;
+exit;
This page took 0.02001 seconds and 4 git commands to generate.