From 77acece7674b444ec0d9ee4da555fdbc72df3908 Mon Sep 17 00:00:00 2001 From: aaron Date: Fri, 30 Aug 2024 00:06:07 +0200 Subject: [PATCH] fix struct name --- publibike/stations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publibike/stations.go b/publibike/stations.go index f6826b7..68877e9 100644 --- a/publibike/stations.go +++ b/publibike/stations.go @@ -8,7 +8,7 @@ import ( ) // StationLoc struct to store station data -type StationLoc struct { +type Station struct { Id int `json:"id"` Latitude float64 `json:"latitude"` Longitude float64 `json:"longitude"`