()
| 23 | var pushChannel []chan *PushParams |
| 24 | |
| 25 | func init() { |
| 26 | pushChannel = make([]chan *PushParams, config.Conf.Task.TaskBase.PushChan) |
| 27 | } |
| 28 | |
| 29 | func (task *Task) GoPush() { |
| 30 | for i := 0; i < len(pushChannel); i++ { |
nothing calls this directly
no outgoing calls
no test coverage detected