cache.go 147 B

1234567891011
  1. package cache
  2. import (
  3. "time"
  4. "github.com/patrickmn/go-cache"
  5. )
  6. func Init() *cache.Cache {
  7. return cache.New(5*time.Minute, 60*time.Second)
  8. }