diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2022-06-07 23:25:07 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2022-06-07 23:25:07 -0400 |
commit | 2ac5b96ce7df6f3a6b6e90dc667f0a9d59e138d9 (patch) | |
tree | e9078d9498038adf8ecab27bf74fb79bf4d6d039 /photon | |
parent | 1f15e5fd836ed6ce398891aa215a1020b9f82044 (diff) |
nws: `CacheWeather` -> `GetForecastBundle`
Diffstat (limited to 'photon')
-rw-r--r-- | photon/photon.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/photon/photon.go b/photon/photon.go index d75d369..3051db3 100644 --- a/photon/photon.go +++ b/photon/photon.go @@ -131,7 +131,7 @@ func Geocode(location string) ([]Coordinates, error) { names[c.Name] = true mCoords = append(mCoords, c) - go nws.CacheWeather(c.Lat, c.Lng) + go nws.GetForecastBundle(c.Lat, c.Lng) } return mCoords, nil } |