We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30ca9dc commit 48f2da4Copy full SHA for 48f2da4
go/smack_my_bitch_up.go
@@ -31,7 +31,7 @@ func main(){
31
32
response,err := exec.Command("curl","-fSs","-u",TWILIO_ACCOUNT_SID + ":" + TWILIO_AUTH_TOKEN, "-d", "From=" + MY_NUMBER, "-d", "To=" + HER_NUMBER, "-d" , "Body=" + message, "https://api.twilio.com/2010-04-01/Accounts/" + TWILIO_ACCOUNT_SID + "/Messages").Output()
33
if(err != nil){
34
- fmt.Printf("Failed to send SMS: ",err)
+ fmt.Printf("Failed to send SMS: %s",err)
35
return
36
}
37
0 commit comments