1 Star 1 Fork 2

menuiis/gkit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
option.go 682 Bytes
一键复制 编辑 原始数据 按行查看 历史
menuis 提交于 2024-04-22 10:18 . init
package page_token
import (
"time"
"gitee.com/menciis/gkit/encrypt/aes"
"gitee.com/menciis/gkit/options"
)
func SetMaxIndex(max int) options.Option {
return func(o interface{}) {
if t, ok := o.(*token); ok {
t.maxIndex = max
}
}
}
func SetMaxElements(max int) options.Option {
return func(o interface{}) {
if t, ok := o.(*token); ok {
t.maxElements = max
}
}
}
func SetSalt(salt string) options.Option {
return func(o interface{}) {
if t, ok := o.(*token); ok {
t.salt = aes.PadKey(salt)
}
}
}
func SetTimeLimitation(d time.Duration) options.Option {
return func(o interface{}) {
if t, ok := o.(*token); ok {
t.timeLimitation = d
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/menciis/gkit.git
git@gitee.com:menciis/gkit.git
menciis
gkit
gkit
d3f65ed26d21

搜索帮助