This repository has been archived on 2023-08-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Foodloop-Server/lib/Pear/LocalLoop/Import/Role/Schema.pm
2019-07-02 15:21:01 +01:00

11 lines
No EOL
148 B
Perl

package Pear::LocalLoop::Import::Role::Schema;
use strict;
use warnings;
use Moo::Role;
has schema => (
is => 'ro',
required => 1,
);
1;