sl4f_lib/diagnostics/
commands.rs1use crate::diagnostics::facade::DiagnosticsFacade;
6use crate::diagnostics::types::*;
7use crate::server::Facade;
8use anyhow::Error;
9use async_trait::async_trait;
10use serde_json::Value;
11
12#[async_trait(?Send)]
13impl Facade for DiagnosticsFacade {
14 async fn handle_request(&self, method: String, args: Value) -> Result<Value, Error> {
15 match method.parse()? {
16 DiagnosticsMethod::SnapshotInspect => {
17 let parsed_args: SnapshotInspectArgs = serde_json::from_value(args)?;
18 self.snapshot_inspect(parsed_args).await
19 }
20 }
21 }
22}