package BookPub::Import::Importer::Amazon::Version3;

use strict;

use lib '/app/tools/bookpub/lib';
use base 'BookPub::Import::Importer::Amazon::Version2';

# version 3 is essentially the same layout as v2 except that we know it's the agency model report
# so we'll derive from v2 and simply override _isAgency from the base class

sub _isAgency { return 'Y'; }

###
1;    # Play nicely.
###
