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

use base 'CGI::Application::Dispatch';

sub dispatch_args {

  return {
          table => [
		    ':app'      => {},
                    ':app/:rm'  => {},
                   ],
         };
}

1;