NAME
PNI::Node::Mo - is a Mo wrapper for PNI nodes
SYNOPSIS
package PNI::Node::Foo::Bar;
use PNI::Node::Mo;
extends 'PNI::Node';
sub BUILD {
my $self = shift;
$self->in('lead');
$self->out('gold');
}
sub task {
my $self = shift;
... # turn lead into gold
}
DESCRIPTION
PNI::Node::Mo is a wrapper of Mo used to build PNI nodes.