lemonldap-ng/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main.pm
Xavier Guimard 2d2edb61ac Merge experimental branch (#960)
Also update version to 2.0
2016-03-17 22:19:44 +00:00

19 lines
431 B
Perl

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 @ISA = qw(
Lemonldap::NG::Handler::Main::Init
Lemonldap::NG::Handler::Main::SharedVariables
Lemonldap::NG::Handler::Main::Reload
Lemonldap::NG::Handler::Main::Run
);
our $VERSION = '2.0.0';
1;