package BookPub::RDAS::Parser::ProductSearch::Google;

use lib '/app/tools/bookpub/lib';
use base 'BookPub::RDAS::Parser::ProductSearch';

use lib '/app/tools/bookpub/lib';
use BookPub::RDAS::Parser::ProductSearch::Google::URL;

sub _fieldConfig {
    {
        URL => {
            tag       => 'body',
            container => 'BookPub::RDAS::Parser::ProductSearch::Google::URL'
        },

        Title => {
            tag       => 'body',
            container => 'BookPub::RDAS::Parser::ProductSearch::Google::Title'
        },

        Author => {
            tag       => 'body',
            container => 'BookPub::RDAS::Parser::ProductSearch::Google::Author'
        },
    };
}

1;
