(configPath = './config.json')
| 5 | |
| 6 | class CopilotAPI { |
| 7 | constructor(configPath = './config.json') { |
| 8 | this.configPath = configPath; |
| 9 | this.config = this.loadConfig(); |
| 10 | this.copilotToken = null; |
| 11 | this.tokenExpiry = null; |
| 12 | } |
| 13 | |
| 14 | loadConfig() { |
| 15 | try { |
nothing calls this directly
no test coverage detected