Func NewClient. Add param projectId.

This commit is contained in:
Владислав Весельский 2025-02-01 20:13:14 +03:00
parent a1fddd32af
commit 678438ace4
1 changed files with 1 additions and 1 deletions

2
fcm.go
View File

@ -89,7 +89,7 @@ type Client struct {
logger logr.Logger
}
func NewClient(cfg ClientConfig, ts oauth2.TokenSource, hc *http.Client, logger logr.Logger) *Client {
func NewClient(projectId string, cfg ClientConfig, ts oauth2.TokenSource, hc *http.Client, logger logr.Logger) *Client {
return &Client{
cfg: cfg,
ts: ts,