lemonldap-ng/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/AuthBasic.pm
Xavier Guimard e2b026b7c8 Fix versions
2019-02-05 23:06:18 +01:00

14 lines
323 B
Perl

# LLNG wrapper class to enable AuthBasic handler with auto-protected PSGI
#
# See https://lemonldap-ng.org/documentation/latest/handlerarch
package Lemonldap::NG::Handler::PSGI::AuthBasic;
use strict;
use base 'Lemonldap::NG::Handler::Lib::AuthBasic',
'Lemonldap::NG::Handler::PSGI::Main';
our $VERSION = '2.0.0';
1;