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