Skip to content

Commit

Permalink
chore: update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rocribera committed Nov 21, 2024
1 parent 5bbf7fa commit 48f95b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func main() {
log.Fatal(err)
}

log.Print(subscribers.Data.Email)
log.Print(subscriber.Data.Email)
}
```

Expand Down Expand Up @@ -253,7 +253,7 @@ func main() {

ctx := context.TODO()

_, _, err := client.Subscriber.Delete(ctx, "subscriber-id")
_, err := client.Subscriber.Delete(ctx, "subscriber-id")
if err != nil {
log.Fatal(err)
}
Expand Down Expand Up @@ -457,7 +457,7 @@ func main() {

ctx := context.TODO()

_, _, err := client.Group.UnAssign(ctx, "group-id", "subscriber-id")
_, err := client.Group.UnAssign(ctx, "group-id", "subscriber-id")
if err != nil {
log.Fatal(err)
}
Expand Down

0 comments on commit 48f95b0

Please sign in to comment.