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

@@ -28,7 +28,7 @@ type GoogleApp struct {
// eg. https://us-central1-m3o-apis.cloudfunctions.net/
address string
// max number of apps per user
limit int
limit int
// custom domain for apps
domain string
// the service account for the app
@@ -143,12 +143,12 @@ func New() *GoogleApp {
log.Info(string(outp))
return &GoogleApp{
domain: domain,
project: project,
address: address,
limit: limit,
domain: domain,
project: project,
address: address,
limit: limit,
identity: identity,
App: new(App),
App: new(App),
}
}