sub index :Path :Args(0) { my ( $self, $c ) = @_; # Hello World $c->response->body( $c->welcome_message ); } #### package MyApp::Controller::Root; our $C; sub auto :Private { my ($self, $c) = @_; $C = $c; }