MARC::Validator::Report;
use strict;
use warnings;
use Class::Utils qw(set_params);
use Cpanel::JSON::XS;
use Getopt::Std;
use Perl6::Slurp qw(slurp);
our $VERSION = 0.03;
# Constructor.
sub new {
s_report {
my ($self, $report_file) = @_;
my $report = slurp($report_file);
# JSON output.
my $j = Cpanel::JSON::XS->new;
$self->{'_report'} = $j->decode($report);
$self->{'_list'} = {};
for
sage {
my $self = shift;
print STDERR "Usage: $0 [-h] [-l] [-p plugin] [-v] [--version] report.json\n";
print STDERR "\t-h\t\tPrint help.\n";
print STDERR "\t-l\t\tList unique errors.\n";
print