Skip to main content

app_facade_api/
lib.rs

1//! Canonical public protocol exposed by the MeowLink App Facade.
2//!
3//! This crate deliberately contains no Core-to-Node runtime contracts. Public
4//! callers use [`FacadeCall`] for every `/app/*` request; domain payloads live
5//! under `input`, while invocation and presentation controls live under
6//! `control`.
7
8pub mod artifact;
9pub mod call;
10pub mod device_topology;
11pub mod hub;
12pub mod interaction_flow;
13pub mod messaging;
14pub mod plugin;
15pub mod routing;
16pub mod runtime;
17pub mod topology;
18
19pub use call::{ActionMode, FacadeCall, FacadeControl, ResponseFormat};
20
21pub const PROTOCOL_VERSION: &str = "app-facade.v1";
22
23pub mod system;