package com.bookshop.solid.ocp;

import java.math.BigDecimal;

/** The extension point: a new shipping option implements this and nothing else changes. */
public interface ShippingRate {

    String name();

    BigDecimal costFor(BigDecimal orderTotal);
}
