sl4f_lib/factory_store/
commands.rs

1// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use 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}