lemonldap-ng/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Null.pm

14 lines
147 B
Perl
Raw Normal View History

2018-04-17 06:56:29 +02:00
package Lemonldap::NG::Common::Logger::Null;
our $VERSION = '2.0.0';
sub new {
return bless {}, shift;
}
sub AUTOLOAD {
return 1;
}
1;