use MARC::Record::MiJ;
use Try::Tiny qw( catch try );
use JSON;
use Data::Dumper;
=head1 API
my $searcher = Koha::SearchEngine::Search->new( { index => 'biblios' } );
my $query = $c->validation->param('q_ccl');
warn Dumper($query);
my ( $error, $results, $total_hits ) = $searcher->simple_search_compat( $query, 0, undef );
if ( !$total_hits ) {
};
}
=head3 get_public
Controller function that handles retrieving a single biblio object
-