Skip to content
This repository has been archived by the owner on Sep 7, 2022. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
chweez authored Feb 7, 2018
1 parent 5175cd8 commit 3b89c8e
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,12 @@ We invoke this function using the following code - You can declare recipient an

```
//Send SMS - REPLACE Recipient and Message with REAL Values
recipients, err := smsService.Send("Recipient", "Message To Send", "")
smsResponse, err := smsService.Send("Recipient", "Message To Send", "")
if err != nil {
fmt.Println(err)
}
//For loop to log all the recipients
for _, recipient := range recipients {
fmt.Println(recipient)
}
fmt.Println(smsResponse)
```

This is the complete sample code. Try to understand how this works first!!!
Expand Down Expand Up @@ -81,10 +78,7 @@ func main() {
fmt.Println(err)
}
//For loop to log all the recipients
for _, recipient := range recipients {
fmt.Println(recipient)
}
fmt.Println(smsResponse)
}
```
Expand Down

0 comments on commit 3b89c8e

Please sign in to comment.