config.go 250 B

123456789101112131415
  1. package config
  2. import "github.com/zeromicro/go-zero/zrpc"
  3. import "github.com/zeromicro/go-zero/core/stores/cache"
  4. type Config struct {
  5. zrpc.RpcServerConf
  6. DtDataStoreDB struct {
  7. DataSource string
  8. }
  9. Cache cache.CacheConf
  10. GtServerIp string
  11. }