14 lines
137 B
Go
14 lines
137 B
Go
package helpers
|
|
|
|
import (
|
|
"github.com/maypok86/otter"
|
|
)
|
|
|
|
var (
|
|
Cache otter.Cache[string, any]
|
|
)
|
|
|
|
func ReloadCache() {
|
|
Cache.Clear()
|
|
}
|