config.go 216 B

12345678910111213
  1. package config
  2. import (
  3. "git.i2edu.net/i2/go-zero/core/stores/cache"
  4. "git.i2edu.net/i2/go-zero/zrpc"
  5. )
  6. type Config struct {
  7. zrpc.RpcServerConf
  8. DataSource string
  9. Table string
  10. Cache cache.CacheConf
  11. }