Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Git / PurePerl / NewDirectoryEntry.pm
1 package Git::PurePerl::NewDirectoryEntry;
2 use Moose;
3 use MooseX::StrictConstructor;
4 use Moose::Util::TypeConstraints;
5 use namespace::autoclean;
6
7 has 'mode'     => ( is => 'ro', isa => 'Str',           required => 1 );
8 has 'filename' => ( is => 'ro', isa => 'Str',           required => 1 );
9 has 'sha1'     => ( is => 'ro', isa => 'Str',           required => 1 );
10
11 __PACKAGE__->meta->make_immutable;
12
13 1;