Skip to content

Commit

Permalink
fix compile bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tedpearson committed Jun 23, 2024
1 parent 279b18a commit 5436d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func main() {
config := configService.Config
locationService := LocationService{
AzureSharedKey: config.AzureSharedKey,
cache: cache.New(cache.AsLRU[string, Location](lru.WithCapacity(200))),
cache: cache.New(cache.AsLRU[string, LocationResult](lru.WithCapacity(200))),
}
forecasters := MakeForecasters(config.Sources.Enabled, config.HttpCacheDir, config.Sources.VisualCrossing.Key)
c := influxdb2.NewClient(config.InfluxDB.Host, config.InfluxDB.AuthToken)
Expand Down

0 comments on commit 5436d20

Please sign in to comment.