2024-08-24 07:14:58 +00:00
|
|
|
package config
|
|
|
|
|
2024-08-24 14:40:42 +00:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/core/stores/redis"
|
|
|
|
"github.com/zeromicro/go-zero/zrpc"
|
|
|
|
)
|
2024-08-24 07:14:58 +00:00
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
zrpc.RpcServerConf
|
2025-03-05 07:10:46 +00:00
|
|
|
|
|
|
|
// Redis Cluster
|
2024-08-24 14:40:42 +00:00
|
|
|
RedisCluster redis.RedisConf
|
2025-03-05 07:10:46 +00:00
|
|
|
|
|
|
|
Token struct {
|
2024-08-24 14:40:42 +00:00
|
|
|
RefreshExpires time.Duration
|
|
|
|
Expired time.Duration
|
|
|
|
Secret string
|
|
|
|
}
|
2024-08-24 07:14:58 +00:00
|
|
|
}
|