lemonldap-ng/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main.pm
2019-02-12 18:21:38 +01:00

15 lines
350 B
Perl

# Common class for all handlers
#
# See https://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.1.0';
1;