config.go 213 B

123456789101112131415
  1. package config
  2. import "github.com/zeromicro/go-zero/zrpc"
  3. type Config struct {
  4. zrpc.RpcServerConf
  5. DB struct {
  6. DataSource string
  7. }
  8. RedisConf struct {
  9. Host string
  10. Password string
  11. DB int
  12. }
  13. }