config.go 249 B

123456789101112
  1. package config
  2. import "github.com/tal-tech/go-zero/zrpc"
  3. type Config struct {
  4. zrpc.RpcServerConf
  5. OssEndPoint string
  6. OssAccessKeyId string
  7. OssAccessKeySecret string
  8. FileSystemConf zrpc.RpcClientConf
  9. RedisAddress string
  10. }