in reply to Re^2: super CGI?
in thread super CGI?

In that case, consider writing your own meta CGI::Application module:
package Dhoss::App; use Foo; use Bar; use Baz; use Quux; use Foo::Bar; use base 'CGI::Application'; 1;
Then start out every app based on that super class (use base 'Dhoss::App';). Easy peasy.

Replies are listed 'Best First'.
Re^4: super CGI?
by stonecolddevin (Parson) on Apr 18, 2006 at 01:05 UTC
    that looks simple enough...will i need to incorporate any @EXPORT stuff?
    meh.
      No. This is basic OO stuff, simple inheritance.
        i figured so. i need to sharpen up a bit on my OO, i haven't been doing much lately.
        meh.