Mountain/IPC/WindServiceHandlers/Update/
CheckForUpdates.rs1#![allow(unused_variables, dead_code, unused_imports)]
2
3use serde_json::Value;
7
8pub async fn Fn() -> Result<Value, String> {
9 crate::dev_log!("update", "update:checkForUpdates");
10
11 Ok(Value::Null)
12}