This commit is contained in:
Asim Aslam
2021-11-18 13:02:33 +00:00
parent 7f7a87c428
commit d6d7577584
13 changed files with 27 additions and 21 deletions

View File

@@ -13,7 +13,7 @@ import (
type Google struct {
Client *customsearch.Service
CxId string
CxId string
}
func New(apiKey, cxId string) *Google {
@@ -22,7 +22,7 @@ func New(apiKey, cxId string) *Google {
return &Google{
Client: cs,
CxId: cxId,
CxId: cxId,
}
}