experimental upload support
[catagits/Web-Simple.git] / lib / Web / Dispatch / Parser.pm
index a6b2332..8e66a05 100644 (file)
@@ -115,6 +115,10 @@ sub _parse_spec_section {
     # %<param spec>
     /\G\%/gc and
       return $self->_parse_param_handler($_, 'body');
+
+    # *<param spec>
+    /\G\*/gc and
+      return $self->_parse_param_handler($_, 'uploads');
   }
   return; # () will trigger the blam in our caller
 }