mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 08:01:16 +00:00
8 lines
210 B
Go
8 lines
210 B
Go
package config
|
|
|
|
import "context"
|
|
|
|
func (c *Config) LoadGoogleServiceAccount(ctx context.Context) (string, error) {
|
|
return c.GetStringRaw(ctx, "GOOGLE_APPLICATION_CREDENTIALS_JSON", "google-service-account")
|
|
}
|