lemonldap-ng/e2e-tests/custom.pm

16 lines
132 B
Perl
Raw Normal View History

2016-02-28 12:51:35 +01:00
package My;
sub hello {
return 'Hello';
}
sub get_uri {
return $_[0];
}
sub get_additional_arg {
return $_[1];
}
1;