telebot/poller_test.go
2020-04-16 17:52:15 +03:00

19 lines
266 B
Go

package telebot
type testPoller struct {
updates chan Update
}
func (p *testPoller) Poll(b *Bot, updates chan Update, stop chan struct{}) {
for {
select {
case upd := <-p.updates:
updates <- upd
case <-stop:
close(stop)
return
default:
}
}
}