blockchain/internal/config/config.go

15 lines
186 B
Go
Raw Normal View History

2025-08-04 01:55:56 +00:00
package config
import "github.com/zeromicro/go-zero/zrpc"
type Config struct {
zrpc.RpcServerConf
2025-08-04 08:58:30 +00:00
Binance
}
type Binance struct {
Key string
Secret string
TestMode bool
2025-08-04 01:55:56 +00:00
}