summaryrefslogtreecommitdiff
path: root/lib/GitHub/Collector/Role/Context.pm
blob: aa30d2be215f825566c38df9a720ee9a2b5e7ea6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package GitHub::Collector::Role::Context;

use YAML;
use Moose::Role;
with qw(MooseX::ConfigFromFile);

sub get_config_from_file {
    my ( $self, $file ) = @_;
    my $conf = YAML::LoadFile($file);
    $conf;
}

1;