App-HistHub

 view release on metacpan or  search on metacpan

lib/App/HistHub/Web/Controller/Root.pm  view on Meta::CPAN

=cut

sub index :Path :Args(0) {
    my ( $self, $c ) = @_;
    $c->view('TD')->template('index');
}

sub default :Path {
    my ( $self, $c ) = @_;
    $c->response->body( 'Page not found' );
    $c->response->status(404);
    
}

=head2 end

Attempt to render a view, if needed.

=cut 

sub end : ActionClass('RenderView') {}



( run in 0.638 second using v1.01-cache-2.11-cpan-39bf76dae61 )