()
| 29 | } |
| 30 | |
| 31 | func (p *Profile) LoadDefault() { |
| 32 | configs := viper.AllSettings() |
| 33 | for appName := range configs { |
| 34 | if viper.GetBool(appName + ".default") { |
| 35 | p.Name = appName |
| 36 | } |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | func (p *Profile) GetApplicationID() (string, error) { |
| 41 | if os.Getenv("ALGOLIA_APPLICATION_ID") != "" { |
no outgoing calls
no test coverage detected