Update README.md

This commit is contained in:
aluvare 2022-01-14 12:55:06 +01:00 committed by GitHub
parent 2454be49c3
commit b3ddf533c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -134,7 +134,8 @@ func main() {
}
// Main loop
for update := range client.RawUpdates {
rawUpdates := client.GetRawUpdatesChannel(100)
for update := range rawUpdates {
// Show all updates
fmt.Println(update.Data)
fmt.Print("\n\n")