This is a short guide on how to set up development environment for a OS Module.
sub process {
my $self = shift;
my $request_data = $self->data->get_request_data();
...
my $imagerevision_id = $self->data->get_imagerevision_id();
print "\n\n---\n\n";
my $ip = $self->os->get_public_ip_address();
print "IP: $ip\n";
print "\n\n---\n\n";
exit;
...
|