| 209 | } |
| 210 | |
| 211 | type TaskBase struct { |
| 212 | CpuNum int `mapstructure:"cpuNum"` |
| 213 | RedisAddr string `mapstructure:"redisAddr"` |
| 214 | RedisPassword string `mapstructure:"redisPassword"` |
| 215 | RpcAddress string `mapstructure:"rpcAddress"` |
| 216 | PushChan int `mapstructure:"pushChan"` |
| 217 | PushChanSize int `mapstructure:"pushChanSize"` |
| 218 | } |
| 219 | |
| 220 | type TaskConfig struct { |
| 221 | TaskBase TaskBase `mapstructure:"task-base"` |
nothing calls this directly
no outgoing calls
no test coverage detected