- or download this
my $conf = Ex::mod->conf(user=>'Alice');
my $a = $conf->new();
- or download this
sub new {
my( $conf, %opts ) = @_;
...
};
return bless $self, $class;
}
- or download this
sub send_request {
my( $self, ... ) = @_;
croak "Can't send_request via incomplete object\n"
if ! $self->{socket};