sl4f_lib/component/
commands.rs1use crate::component::facade::ComponentFacade;
6use crate::component::types::ComponentMethod;
7use crate::server::Facade;
8use anyhow::Error;
9use async_trait::async_trait;
10use serde_json::{to_value, Value};
11
12#[async_trait(?Send)]
13impl Facade for ComponentFacade {
14 async fn handle_request(&self, method: String, args: Value) -> Result<Value, Error> {
15 match method.parse()? {
16 ComponentMethod::List => {
17 let result = self.list().await?;
18 Ok(to_value(result)?)
19 }
20 ComponentMethod::Search => {
21 let result = self.search(args).await?;
22 Ok(to_value(result)?)
23 }
24 ComponentMethod::Launch => {
25 let result = self.launch(args).await?;
26 Ok(to_value(result)?)
27 }
28 }
29 }
30}