lemonldap-ng/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main.pm

15 lines
350 B
Perl
Raw Normal View History

2017-02-16 08:37:40 +01:00
# Common class for all handlers
#
2019-02-04 20:58:04 +01:00
# 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;
2019-02-12 18:21:38 +01:00
our $VERSION = '2.1.0';
2014-07-07 20:30:42 +02:00
1;