()
| 37 | }) |
| 38 | |
| 39 | func getLoadedEcosystemDomains() map[string][]string { |
| 40 | ecosystemDomains, err := loadEcosystemDomains() |
| 41 | if err != nil { |
| 42 | domainsLog.Printf("Failed to load ecosystem domains: %v", err) |
| 43 | return map[string][]string{} |
| 44 | } |
| 45 | return ecosystemDomains |
| 46 | } |
| 47 | |
| 48 | // CopilotDefaultDomains are the default domains required for GitHub Copilot CLI authentication and operation |
| 49 | var CopilotDefaultDomains = []string{ |
no test coverage detected