DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindServiceHandlers/ExtensionHost/StarterKill.rs
1//! Wire method: `extensionHostStarter:kill`.
2//! Acknowledged no-op - Cocoon lifecycle is managed by Mountain directly.
3
4use serde_json::Value;
5
6pub async fn Fn(_Arguments:Vec<Value>) -> Result<Value, String> {
7 crate::dev_log!("exthost", "extensionHostStarter:kill");
8
9 Ok(Value::Null)
10}