mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
Made createMCPConfigFile private
This commit is contained in:
parent
7af9973a8d
commit
01329382b9
1 changed files with 2 additions and 2 deletions
|
|
@ -47,7 +47,7 @@ class MCPConfigService extends Disposable implements IMCPConfigService {
|
|||
const mcpExists = await this.configFileExists();
|
||||
if (!mcpExists) {
|
||||
console.log('MCP Config file does not exist. Creating...');
|
||||
await this.createMCPConfigFile();
|
||||
await this._createMCPConfigFile();
|
||||
} else {
|
||||
console.log('MCP Config file already exists.');
|
||||
}
|
||||
|
|
@ -76,7 +76,7 @@ class MCPConfigService extends Disposable implements IMCPConfigService {
|
|||
}
|
||||
}
|
||||
|
||||
async createMCPConfigFile(): Promise<void> {
|
||||
private async _createMCPConfigFile(): Promise<void> {
|
||||
const mcpConfigUri = await this.getMCPConfigPath();
|
||||
|
||||
// Create the directory if it doesn't exist
|
||||
|
|
|
|||
Loading…
Reference in a new issue