The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Apps::Checkbook::NoOp;

use strict;
use warnings;

use base 'Apps::Checkbook::GEN::NoOp';


1;

=head1 NAME

Apps::Checkbook::NoOp - A controller in the Apps::Checkbook application

=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 Apps::Checkbook::NoOp;

    my $cgi = Gantry::Engine::CGI->new( {
        config => {
            #...
        },
        locations => {
            '/someurl' => 'Apps::Checkbook::NoOp',
            #...
        },
    } );

httpd.conf:

    <Perl>
        # ...
        use Apps::Checkbook::NoOp;
    </Perl>

    <Location /someurl>
        SetHandler  perl-script
        PerlHandler Apps::Checkbook::NoOp
    </Location>

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

=over 4


=back


=head1 METHODS INHERITED FROM Apps::Checkbook::GEN::NoOp

=over 4

=item namespace


=back


=head1 DEPENDENCIES

    Apps::Checkbook

=head1 AUTHOR

Somebody Somewhere, E<lt>somebody@example.comE<gt>

Somebody Else

=head1 COPYRIGHT AND LICENSE

Copyright (C) 2006 Somebody Somewhere

All rights reserved.

=cut