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
2019-07-04 14:16:49 +01:00

19 lines
251 B
Perl

package Pear::LocalLoop::Import::LCCCsv::Suppliers;
use Moo;
extends qw/Pear::LocalLoop::Import::LCCCsv/;
sub import {
my $self = shift;
$import = Pear::LocalLoop::Import::LCCCsv->new;
}
sub _row_to_result {
my ( $self, $row ) = @_;
}
1;