sl4f_lib/component/
commands.rsuse crate::component::facade::ComponentFacade;
use crate::component::types::ComponentMethod;
use crate::server::Facade;
use anyhow::Error;
use async_trait::async_trait;
use serde_json::{to_value, Value};
#[async_trait(?Send)]
impl Facade for ComponentFacade {
async fn handle_request(&self, method: String, args: Value) -> Result<Value, Error> {
match method.parse()? {
ComponentMethod::List => {
let result = self.list().await?;
Ok(to_value(result)?)
}
ComponentMethod::Search => {
let result = self.search(args).await?;
Ok(to_value(result)?)
}
ComponentMethod::Launch => {
let result = self.launch(args).await?;
Ok(to_value(result)?)
}
}
}
}