mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-02 02:57:15 +08:00

feat: Implement Prometheus metrics and caching for game sessions fix: Rename Prometheus metric for game modes to include namespace
8 lines
125 B
Go
8 lines
125 B
Go
package savedata
|
|
|
|
import (
|
|
"github.com/patrickmn/go-cache"
|
|
)
|
|
|
|
var Cache = cache.New(cache.NoExpiration, cache.NoExpiration)
|