13 lines
222 B
Go
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")
|
|
|
|
}
|