sl4f_lib/factory_store/
commands.rs1use crate::server::Facade;
6use anyhow::Error;
7use async_trait::async_trait;
8use serde_json::Value;
9
10use crate::factory_store::facade::FactoryStoreFacade;
11use crate::factory_store::types::FactoryStoreMethod;
12
13#[async_trait(?Send)]
14impl Facade for FactoryStoreFacade {
15 async fn handle_request(&self, method: String, args: Value) -> Result<Value, Error> {
16 match method.parse()? {
17 FactoryStoreMethod::ReadFile => self.read_file(args).await,
18 FactoryStoreMethod::ListFiles => self.list_files(args).await,
19 }
20 }
21}