Don't bother looking up type - the subclasses know what they are.
[catagits/Gitalist.git] / lib / Gitalist / Git / Object / Tree.pm
1 package Gitalist::Git::Object::Tree;
2 use MooseX::Declare;
3
4 class Gitalist::Git::Object::Tree
5     extends Gitalist::Git::Object
6     with Gitalist::Git::Object::HasTree {
7         has '+type' => ( default => 'tree' );
8         has '+_gpp_obj' => ( handles => [ 'directory_entries',
9                                       ],
10                          );
11     }