lemonldap-ng/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main.pm
2017-02-16 07:37:40 +00:00

15 lines
349 B
Perl

# Common class for all handlers
#
# See http://lemonldap-ng.org/documentation/latest/handlerarch
package Lemonldap::NG::Handler::Main;
use strict;
use Lemonldap::NG::Handler::Main::Init;
use Lemonldap::NG::Handler::Main::Reload;
use Lemonldap::NG::Handler::Main::Run;
use Lemonldap::NG::Handler::Main::SharedVariables;
our $VERSION = '2.0.0';
1;