Add vim swap files to gitignore
[catagits/Gitalist.git] / lib / Gitalist / Model / GitRepos.pm
1 package Gitalist::Model::GitRepos;
2
3 use Moose;
4 use Gitalist::Git::Repo;
5 use namespace::autoclean;
6
7 sub COMPONENT {
8     my ($class, $app, $config) = @_;
9
10     Gitalist::Git::Repo->new($config);
11 }
12
13 __PACKAGE__->meta->make_immutable;