config.go 139 B

12345678910
  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. }