Help for this page

Select Code to Download


  1. or download this
    under sub { validate_cookie() };
    get "/foo" => sub {
    ...
        my $c = shift;
        ...
    };
    
  2. or download this
    get "/foo" => sub {
        validate_cookie() or return;
    ...
        my $c = shift;
        ...
    };