Is there a way to specify in the builder section of a particular method (GET or POST), but not both at once? My example of builder section.
my $main_app=builder
{
mount "/" => builder{$app;};
};
It handles get and post requests, how can I disable the processing of GET requests?
Thanks.