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