config.go 236 B

12345678910111213
  1. package config
  2. import (
  3. "bp.jydev.jianyu360.cn/BaseService/jyMicroservices/jyCodeService/entity"
  4. "github.com/zeromicro/go-zero/zrpc"
  5. )
  6. type Config struct {
  7. zrpc.RpcServerConf
  8. }
  9. type Db struct {
  10. Mysql entity.Mysql `json:"mysql"`
  11. }