Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
helios-ag committed Jun 26, 2022
1 parent 34cb260 commit 53fff17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/callback/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ func main() {
fmt.Fprintf(w, resp.Status)
fmt.Fprintf(w, resp.Response.Url)
fmt.Fprintf(w, resp.Response.LastErrorMessage)
fmt.Fprintf(w, fmt.Sprint(resp.Response.LastErrorDate))
fmt.Fprintf(w, fmt.Sprint(resp.Response.PendingUpdateCount))
fmt.Fprint(w, resp.Response.LastErrorDate)
fmt.Fprint(w, resp.Response.PendingUpdateCount)

}
fmt.Fprintf(w, "error getting callBack info: %v\n", errInfo)
Expand All @@ -86,7 +86,7 @@ func main() {
if errInfo != nil {
fmt.Fprintf(w, "error subscribing: %v\n", errInfo)
} else {
fmt.Fprintf(w, fmt.Sprint(resp.SubscriptionId))
fmt.Fprint(w, fmt.Sprint(resp.SubscriptionId))
}
})

Expand Down

0 comments on commit 53fff17

Please sign in to comment.