aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 9 insertions, 2 deletions
diff --git a/README.md b/README.md
index 75a4dae..1c3f3d2 100644
--- a/README.md
+++ b/README.md
@@ -27,6 +27,7 @@ import (
"fmt"
"log"
"os"
+ "os/signal"
"github.com/neonxp/tamtam"
)
@@ -36,8 +37,14 @@ func main() {
info, err := api.Bots.GetBot() // Простой метод
log.Printf("Get me: %#v %#v", info, err)
- go api.UpdatesLoop(context.Background()) // Запуск цикла получения обновлений
- for upd := range api.GetUpdates() { // Чтение из канала с обновлениями
+ ctx, cancel := context.WithCancel(context.Background())
+ go func() {
+ exit := make(chan os.Signal)
+ signal.Notify(exit, os.Kill, os.Interrupt)
+ <-exit
+ cancel()
+ }()
+ for upd := range api.GetUpdates(ctx) { // Чтение из канала с обновлениями
log.Printf("Received: %#v", upd)
switch upd := upd.(type) { // Определение типа пришедшего обновления
case *tamtam.MessageCreatedUpdate: