config.go 203 B

123456789101112
  1. package config
  2. import (
  3. "github.com/tal-tech/go-zero/core/stores/cache"
  4. "github.com/tal-tech/go-zero/zrpc"
  5. )
  6. type Config struct {
  7. zrpc.RpcServerConf
  8. DataSource string
  9. Cache cache.CacheConf
  10. }