Catalyst Improving your Catalyst Application #44

Catalyst base controller example

package MyApp::BaseController::Hello;
use base 'Catalyst::Controller';
sub hello : Local { }

package MyApp::Controller::A;
use base 'MyApp::BaseController::Hello';
package MyApp::Controller::B;
use base 'MyApp::BaseController::Hello';
continued...
Infinity Interactive