From c89871fd1ece24833d5ef01d2fc2b0a3df0837f2 Mon Sep 17 00:00:00 2001 From: siddharth Date: Sun, 15 May 2022 22:40:46 -0400 Subject: nws: points -> Points --- nws/nws.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nws/nws.go') diff --git a/nws/nws.go b/nws/nws.go index 02b4d75..1ae7df5 100644 --- a/nws/nws.go +++ b/nws/nws.go @@ -32,8 +32,8 @@ func (e NWSPointsError) Error() string { return fmt.Sprintf("%d: %s: %s", e.Status, e.Type, e.Detail) } -// NWS API's `/points` endpoint. -func points(lat, lng float32) (*NWSPoints, error) { +// NWS `/points` endpoint. +func Points(lat, lng float32) (*NWSPoints, error) { url := fmt.Sprintf("https://api.weather.gov/points/%.4f,%.4f", lat, lng) resp, err := client.Get(url) if err != nil { -- cgit v1.2.3