shellcanvas_adapter_sdk/lib.rs
1// SPDX-License-Identifier: MPL-2.0
2//! Build a native connection adapter without linking the ShellCanvas desktop.
3//! Standard input/output are reserved for the versioned protocol.
4pub mod package;
5mod server;
6pub mod tools;
7pub mod wire;
8pub use async_trait::async_trait;
9pub use serde_json::{self, json, Value};
10pub use server::{run, serve, Adapter, CallError, RequestContext};
11pub use wire::ServiceDescriptor;