zwpanel/service/initialize/other/verifyCodeCachePool.go
2023-11-08 21:53:07 +08:00

13 lines
222 B
Go

package other
import (
"sun-panel/global"
"sun-panel/lib/cache"
"time"
)
func InitVerifyCodeCachePool() cache.Cacher[string] {
return global.NewCache[string](10*time.Minute, 10*time.Minute, "VerifyCodeCachePool")
}