Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Git / PurePerl / Object / Blob.pm
CommitLineData
3fea05b9 1package Git::PurePerl::Object::Blob;
2use Moose;
3use MooseX::StrictConstructor;
4use Moose::Util::TypeConstraints;
5use namespace::autoclean;
6
7extends 'Git::PurePerl::Object';
8
9has 'kind' =>
10 ( is => 'ro', isa => 'ObjectKind', required => 1, default => 'blob' );
11
12__PACKAGE__->meta->make_immutable;
13
141;