config.go 222 B

12345678910111213
  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. Table string
  10. Cache cache.CacheConf
  11. }