Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindServiceHandlers/Update/
ApplyUpdate.rs

1//! Wire method: `update:applyUpdate`.
2//! No-op - Land has no update server.
3
4use serde_json::Value;
5
6pub async fn Fn() -> Result<Value, String> {
7	crate::dev_log!("update", "update:applyUpdate");
8
9	Ok(Value::Null)
10}