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/rpcx"
  5. )
  6. type Config struct {
  7. rpcx.RpcServerConf
  8. DataSource string
  9. Table string
  10. Cache cache.CacheConf
  11. }