LemonLDAP::NG Web SSO
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
lemonldap-ng/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Constants.pm

24 lines
418 B

package Lemonldap::NG::Common::PSGI::Constants;
use strict;
use Exporter 'import';
use base qw(Exporter);
our $VERSION = '2.0.0';
# CONSTANTS
use constant {
DEBUG => 4,
INFO => 3,
WARN => 2,
NOTICE => 1,
ERROR => 0,
};
our %EXPORT_TAGS = ( 'all' => [qw(DEBUG INFO WARN ERROR $no)] );
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
our @EXPORT = ( @{ $EXPORT_TAGS{'all'} } );
1;