config.go 277 B

123456789101112131415161718
  1. package config
  2. import (
  3. "github.com/zeromicro/go-zero/core/stores/redis"
  4. "github.com/zeromicro/go-zero/zrpc"
  5. )
  6. type Config struct {
  7. zrpc.RpcServerConf
  8. RedisConf redis.RedisConf
  9. Rtc Rtc
  10. }
  11. type Rtc struct {
  12. Url []string
  13. ApiKey string
  14. ApiSecret string
  15. }