config.go 280 B

1234567891011121314151617
  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. Erp struct {
  12. AutoRefresh bool
  13. AuthServer string
  14. }
  15. }