Skip to main content

Mountain/IPC/WindServiceHandlers/ExtensionHost/
StarterKill.rs

1#![allow(unused_variables, dead_code, unused_imports)]
2
3//! Wire method: `extensionHostStarter:kill`.
4//! Acknowledged no-op - Cocoon lifecycle is managed by Mountain directly.
5
6use serde_json::Value;
7
8pub async fn Fn(_Arguments:Vec<Value>) -> Result<Value, String> {
9	crate::dev_log!("exthost", "extensionHostStarter:kill");
10
11	Ok(Value::Null)
12}