Bug 4266: Hide Encumbrance and Expenditure in aqbudgets.tt
[koha.git] / Koha / SearchEngine / Zebra.pm
1 package Koha::SearchEngine::Zebra;
2 use Moose;
3
4 extends 'Data::SearchEngine::Zebra';
5
6 # the configuration file is retrieved from KOHA_CONF by default, provide it from thereĀ²
7 has '+conf_file' => (
8     is => 'ro',
9     isa => 'Str',
10     default =>  $ENV{KOHA_CONF},
11     required => 1
12 );
13
14 1;