001package io.avaje.jsonb.spi;
002
003import io.avaje.jsonb.Jsonb;
004
005/**
006 * Bootstrap Jsonb.
007 */
008public interface Bootstrap {
009
010  /**
011   * Create and return a Builder (with an underling SPI implementation).
012   * <p>
013   * The default implementation uses Jackson Core.
014   */
015  Jsonb.Builder builder();
016}