11 lines
No EOL
148 B
Perl
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; |