package cache import ( "github.com/patrickmn/go-cache" "matchmaking-system/internal/conf" "time" ) // NewCacheDB // // @Description: // @param c // @return *cache.Cache func NewCacheDB(c *conf.Data) *cache.Cache { return cache.New(time.Minute, time.Minute) }