in reply to Re^5: Dancer2 hook
in thread Dancer2 hook
package Howdy; use Dancer2; use Dancer2::Plugin::TestHook; get '/' => sub { template 'index' => { 'title' => 'Howdy' }; }; get '/hello' => sub { die "We are out of ponies\n"; return "Welcome to Dancer2 Web Application"; }; true;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Dancer2 hook ( Dancer2::Plugin BUILD)
by Anonymous Monk on Aug 13, 2019 at 02:25 UTC |