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