The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package SVN::Dump::Change::Rmdir;
BEGIN {
  $SVN::Dump::Change::Rmdir::VERSION = '1.000';
}

use Moose;
extends 'SVN::Dump::Change::Rm';

has '+operation' => ( default => 'directory_deletion' );

1;