It is [here](https://metacpan.org/pod/Dancer#halt) ``` hook before sub { if ($some_condition) { halt("Unauthorized"); # This code is not executed : do_stuff(); } }; get '/' => sub { "hello there"; }; ``` must be `hook before => sub {`