This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/lib/Pear/LocalLoop/Import/Role/Schema.pm

12 lines
153 B
Perl
Raw Normal View History

2019-07-02 14:21:01 +00:00
package Pear::LocalLoop::Import::Role::Schema;
use strict;
use warnings;
use Moo::Role;
has schema => (
2021-03-20 12:09:50 +00:00
is => 'ro',
required => 1,
2019-07-02 14:21:01 +00:00
);
2021-03-20 12:09:50 +00:00
1;