I'm making a backwards-compatible implementation with an existing REST interface which has a lot of literal '*' characters in the paths, like:

/devices/:name/*/integer
/devices/:name/*

But Dancer2 interprets the splat and tends to make it interfere with other routes.  Is there any way to make it use it as a literal '*' character?  I tried a regex:

qr{/devices/:name/\*/integer}

But that didn't seem to do the trick.

Thanks,
Timm