Skip to content

Commit

Permalink
Remove useless template specifications
Browse files Browse the repository at this point in the history
  • Loading branch information
PatZim committed Nov 22, 2019
1 parent 4e416fa commit b7b08da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app.pl
Expand Up @@ -87,7 +87,7 @@
'attachment; filename="' . $bin->bin . '"'
);
$self->reply->static($bin->path);
} => 'latest';
};

get '/dl/:product/*bin' => sub {
my $self = shift;
Expand All @@ -104,16 +104,16 @@
);
}
$self->reply->static($bin->path);
} => 'dl';
};

### </FILES ROUTES>

get '/people/irc' => sub {
shift->redirect_to('https://webchat.freenode.net/?channels=#raku');
} => 'people-irc';
};
get '/people/irc-dev' => sub {
shift->redirect_to('https://webchat.freenode.net/?channels=#raku-dev');
} => 'people-irc-dev';
};

any $_ => sub {
my $c = shift;
Expand Down

0 comments on commit b7b08da

Please sign in to comment.