Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Git / PurePerl / Actor.pm
diff --git a/local-lib5/lib/perl5/Git/PurePerl/Actor.pm b/local-lib5/lib/perl5/Git/PurePerl/Actor.pm
new file mode 100644 (file)
index 0000000..04c2b4b
--- /dev/null
@@ -0,0 +1,12 @@
+package Git::PurePerl::Actor;
+use Moose;
+use MooseX::StrictConstructor;
+use Moose::Util::TypeConstraints;
+use namespace::autoclean;
+
+has 'name'  => ( is => 'ro', isa => 'Str', required => 1 );
+has 'email' => ( is => 'ro', isa => 'Str', required => 1 );
+
+__PACKAGE__->meta->make_immutable;
+
+1;