update go mod (#334)

This commit is contained in:
Asim Aslam
2021-12-16 12:31:04 +00:00
committed by GitHub
parent f9e539ad88
commit 527dcc12c3
16 changed files with 164 additions and 165 deletions

View File

@@ -26,7 +26,7 @@ type GoogleFunction struct {
// eg. https://us-central1-m3o-apis.cloudfunctions.net/
address string
// max functions deployed
limit int
limit int
// function identity
identity string
}
@@ -126,9 +126,9 @@ func NewFunction() *GoogleFunction {
}
log.Info(string(outp))
return &GoogleFunction{
project: project,
address: address,
limit: limit,
project: project,
address: address,
limit: limit,
identity: identity,
}
}