2024-08-05 09:11:43 +00:00
|
|
|
package config
|
|
|
|
|
2024-08-06 05:59:24 +00:00
|
|
|
import (
|
|
|
|
"github.com/zeromicro/go-zero/core/stores/redis"
|
|
|
|
"github.com/zeromicro/go-zero/zrpc"
|
|
|
|
"time"
|
|
|
|
)
|
2024-08-05 09:11:43 +00:00
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
zrpc.RpcServerConf
|
2024-08-06 05:59:24 +00:00
|
|
|
RedisCluster redis.RedisConf
|
|
|
|
Token struct {
|
|
|
|
RefreshExpires time.Duration
|
|
|
|
Expired time.Duration
|
|
|
|
Secret string
|
|
|
|
}
|
2024-08-05 09:11:43 +00:00
|
|
|
}
|