bug 9722: DBrev 3.13.00.004 to add OpacShowHoldNotes syspref
[koha.git] / Koha / SearchEngine / Index.pm
blob2807fbf98db1d7632bcdfeccaa1e4f472baf4da0
1 package Koha::SearchEngine::Index;
2 use Moose;
4 use Moose::Util qw( apply_all_roles );
6 sub BUILD {
7 my $self = shift;
8 my $syspref = 'Solr';
9 apply_all_roles( $self, "Koha::SearchEngine::${syspref}::Index" );