There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

App::LDAP::LDIF - base class of models in App::LDAP

SYNOPSIS

package App::LDAP::LDIF::Animal

use Moose;
with 'App::LDAP::LDIF';

use Net::LDAP::Entry;

has name => (
    is  => "rw",
    isa => "Str",
);

package Controller;
my $dog = App::LDAP::LDIF::Animal->new( name => "lucky" );

my $dog->save;

my $cat = App::LDAP::LDIF::Animal->find( name => "mou" );
say $cat->entry->ldif;