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


package SRS::EPP::Command::Update;

use Moose;
extends 'SRS::EPP::Command';

use Module::Pluggable search_path => [__PACKAGE__];
with 'SRS::EPP::Command::PayloadClass';

sub action {
	"update";
}

1;