aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/ranking/NormalizerSetup.java
blob: 32fbb3190fcf2009f78c1547ba2ec8bd7122c1e3 (plain) (blame)
1
2
3
4
5
6
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.ranking;

import java.util.function.Supplier;

record NormalizerSetup(String name, Supplier<Normalizer> supplier, FunEvalSpec inputEvalSpec) {}