An open API service indexing awesome lists of open source software.

https://github.com/perldancer/dancer2-plugin-syntax-getpost

Syntactic sugar for GET+POST handlers
https://github.com/perldancer/dancer2-plugin-syntax-getpost

Last synced: 29 days ago
JSON representation

Syntactic sugar for GET+POST handlers

Awesome Lists containing this project

README

          

=pod

=encoding UTF-8

=head1 NAME

Dancer2::Plugin::Syntax::GetPost - Syntactic sugar for GET+POST handlers

=head1 VERSION

version 0.003

=head1 SYNOPSIS

use Dancer2::Plugin::Syntax::GetPost;

get_post '/myform' => sub { ... };

=head1 DESCRIPTION

This module provides very simple syntactic sugar to define a handler for GET and
POST requests. Instead of writing this:

any [qw/get post/] => '/form' => sub { ... };

You can write just this:

get_post '/form' => sub { ... };

=for Pod::Coverage method_names_here

=head1 SEE ALSO

=over 4

=item *

L

=back

=for :stopwords cpan testmatrix url bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan

=head1 SUPPORT

=head2 Bugs / Feature Requests

Please report any bugs or feature requests through the issue tracker
at L.
You will be notified automatically of any progress on your issue.

=head2 Source Code

This is open source software. The code repository is available for
public review and contribution under the terms of the license.

L

git clone https://github.com/PerlDancer/dancer2-plugin-syntax-getpost.git

=head1 AUTHOR

David Golden

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2023 by David Golden.

This is free software, licensed under:

The Apache License, Version 2.0, January 2004

=cut