blob: 5109e9a80bfd31b4f2bc72e3c3bdbdee6de02c07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package GitHub::Collector::Role::Graph::Nodes;
use Moose::Role;
has nodes => (
is => 'rw',
isa => 'HashRef',
lazy => 1,
default => sub { {} },
auto_deref => 1,
);
1;
|