From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
use Mouse;
our $VERSION = '2.19.0';
# INITIALIZATION
sub init {
my ($self) = @_;
if ( $self->conf->{proxyUseSoap} ) {
'Lemonldap::NG::Portal::Lib::SOAPProxy';
}
else {
'Lemonldap::NG::Portal::Lib::RESTProxy';
}
return $self->SUPER::init();
}
1;