The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Dancer::Plugin::WebDAV - Defines routes for methods of HTTP WebDAV

SYNOPSIS

    package YourDancerApp;
    use Dancer ':syntax';
    use Dancer::Plugin::WebDAV;

    propfind '/somewhere/:param' => sub {
        ...
    };

    mkcol '/anotherwhere/:param' => sub {
        ...
    };

DESCRIPTION

Dancer::Plugin::WebDAV provides the routes controllers to define routes for WebDAV. Just like the routes controllers any, "Dancer/get" in get, "Dancer/patch" in patch, post, del, options and put.

AUTHOR

shelling <navyblueshellingford@gmail.com>

SEE ALSO

LICENSE

Copyright (C) shelling

The MIT License