X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-CGI-Ex;a=blobdiff_plain;f=samples%2Fapp%2Fapp1%2Fapp1.pl;fp=samples%2Fapp%2Fapp1%2Fapp1.pl;h=d05de5e419aabf40145475d8475003577d21df20;hp=0000000000000000000000000000000000000000;hb=ed00221d27dfab1e82ec2ea040ab4c399a91c545;hpb=0b04f67c06c1db11969096f07dfc7dbb23bf99ba diff --git a/samples/app/app1/app1.pl b/samples/app/app1/app1.pl new file mode 100755 index 0000000..d05de5e --- /dev/null +++ b/samples/app/app1/app1.pl @@ -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;