52b57e9fba
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
19 lines
261 B
Go
19 lines
261 B
Go
package osm
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/melihmucuk/geocache"
|
|
)
|
|
|
|
var geoCache *geocache.Cache
|
|
|
|
func init() {
|
|
c, err := geocache.NewCache(time.Hour, 5*time.Minute, geocache.WithIn1M)
|
|
|
|
if err != nil {
|
|
log.Panicf("osm: %s", err.Error())
|
|
}
|
|
|
|
geoCache = c
|
|
}
|