io.github.mike10004.vhs.EntryMatcherFactory Maven / Gradle / Ivy
package io.github.mike10004.vhs;
import java.io.IOException;
import java.util.List;
public interface EntryMatcherFactory {
EntryMatcher createEntryMatcher(List harEntries, EntryParser requestParser) throws IOException;
}