package Bigtop::Example::Billing; use strict; our $VERSION = '0.01'; use base 'Bigtop::Example::GENBilling'; use Bigtop::Example::Billing::Status; use Bigtop::Example::Billing::Company; use Bigtop::Example::Billing::Customer; use Bigtop::Example::Billing::LineItem; use Bigtop::Example::Billing::Invoice; 1; =head1 NAME Bigtop::Example::Billing - the base module of this web app =head1 SYNOPSIS This package is meant to be used in a stand alone server/CGI script or the Perl block of an httpd.conf file. Stand Alone Server or CGI script: use Bigtop::Example::Billing; my $cgi = Gantry::Engine::CGI->new( { config => { #... }, locations => { '/' => 'Bigtop::Example::Billing', #... }, } ); httpd.conf: # ... use Bigtop::Example::Billing; If all went well, one of these was correctly written during app generation. =head1 DESCRIPTION This module was originally generated by Bigtop. But feel free to edit it. You might even want to describe the table this module controls here. =head1 METHODS (inherited from GENBilling) =over 4 =item init =item do_main =item site_links =back =head1 SEE ALSO Gantry Bigtop::Example::GENBilling Bigtop::Example::Billing::Status Bigtop::Example::Billing::Company Bigtop::Example::Billing::Customer Bigtop::Example::Billing::LineItem Bigtop::Example::Billing::Invoice =head1 AUTHOR Phil Crow Tim Keefer =head1 COPYRIGHT AND LICENSE Copyright (C) 2006 Phil Crow This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available. =cut