Add param ctx.
This commit is contained in:
parent
f247e11261
commit
7d427c2215
3
fcm.go
3
fcm.go
|
@ -12,6 +12,7 @@ package fcm
|
|||
import (
|
||||
"bufio"
|
||||
"bytes"
|
||||
"context"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io"
|
||||
|
@ -316,7 +317,7 @@ func makeSendResponseFromPart(part *multipart.Part) (SendResponse, error) {
|
|||
return resp, nil
|
||||
}
|
||||
|
||||
func (c *Client) SendEach(messages []Message) (MessageMultiSendResponse, error) {
|
||||
func (c *Client) SendEach(ctx context.Context, messages []Message) (MessageMultiSendResponse, error) {
|
||||
return c.doSendEachInBatch(messages, false)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue