blockchain/internal/config/config.go

20 lines
297 B
Go
Raw Normal View History

2025-08-04 01:55:56 +00:00
package config
2025-08-04 14:02:01 +00:00
import (
"github.com/zeromicro/go-zero/core/stores/redis"
"github.com/zeromicro/go-zero/zrpc"
)
2025-08-04 01:55:56 +00:00
type Config struct {
zrpc.RpcServerConf
2025-08-04 14:02:01 +00:00
Binance Binance
// Redis Cluster
RedisCluster redis.RedisConf
2025-08-04 08:58:30 +00:00
}
type Binance struct {
Key string
Secret string
TestMode bool
2025-08-04 01:55:56 +00:00
}