Merge branch 'master' of ssh://github.com/micro/services

This commit is contained in:
Asim Aslam
2021-12-16 12:46:05 +00:00
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),
}
}