From 89651e06c6093df5fca889b6485a9460b94abd05 Mon Sep 17 00:00:00 2001 From: Liz MacLean <18120837+lizziemac@users.noreply.github.com> Date: Wed, 13 May 2026 09:52:13 -0400 Subject: [PATCH] Update README.md to use v3.0.0 function LowestShipmentRate instead of LowestRate (now private) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f74a73..4854ec8 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ func main() { os.Exit(1) } - lowestRate, err := client.LowestRate(shipment) + lowestRate, err := client.LowestShipmentRate(shipment) if err != nil { fmt.Fprintln(os.Stderr, "error getting lowest rate:", err) os.Exit(1)