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/LCCCsv/Suppliers.pm

19 lines
251 B
Perl
Raw Normal View History

2019-07-02 14:21:01 +00:00
package Pear::LocalLoop::Import::LCCCsv::Suppliers;
use Moo;
extends qw/Pear::LocalLoop::Import::LCCCsv/;
sub import {
my $self = shift;
2019-07-04 13:16:49 +00:00
$import = Pear::LocalLoop::Import::LCCCsv->new;
2019-07-02 14:21:01 +00:00
}
sub _row_to_result {
my ( $self, $row ) = @_;
}
2019-07-04 13:16:49 +00:00
1;