DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindServiceHandlers/ExtensionHost/StarterCreate.rs
1//! Wire method: `extensionHostStarter:createExtensionHost`.
2//! Allocates a stub extension-host ID for VS Code's starter protocol.
3
4use serde_json::{Value, json};
5
6pub async fn Fn(_Arguments:Vec<Value>) -> Result<Value, String> {
7 crate::dev_log!("exthost", "extensionHostStarter:createExtensionHost");
8
9 Ok(json!({ "id": "1" }))
10}