001package io.freefair.spring.okhttp;
002
003import okhttp3.OkHttpClient;
004
005/**
006 * @author Lars Grefer
007 */
008@FunctionalInterface
009public interface OkHttp3Configurer {
010
011    void configure(OkHttpClient.Builder object);
012}