lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Proxy.pm
Xavier Guimard 0da228ff35 make tidy
2016-12-26 09:23:35 +00:00

18 lines
279 B
Perl

package Lemonldap::NG::Portal::UserDB::Proxy;
use strict;
use Mouse;
use Lemonldap::NG::Portal::Main::Constants 'PE_OK';
extends 'Lemonldap::NG::Common::Module', 'Lemonldap::NG::Portal::Lib::Proxy';
our $VERSION = '2.0.0';
# RUNNING METHODS
sub setGroups {
PE_OK;
}
1;