lemonldap-ng/e2e-tests/custom.pm
2020-11-12 13:43:41 +01:00

18 lines
247 B
Perl

package My;
sub hello {
return 'Hello';
}
sub get_additional_arg {
return $_[0];
}
sub accessToTrace {
my $hash = shift;
return
"$hash->{custom} alias $hash->{params}->[0] $hash->{params}->[1]:$hash->{session}->{groups}";
}
1;