Skip to main content

microsandbox_portal/
lib.rs

1//! Microsandbox Portal - JSON-RPC implementation for portal processes.
2
3#![warn(missing_docs)]
4
5//--------------------------------------------------------------------------------------------------
6// Types
7//--------------------------------------------------------------------------------------------------
8
9pub mod error;
10pub mod handler;
11pub mod payload;
12pub mod portal;
13pub mod route;
14pub mod state;
15
16//--------------------------------------------------------------------------------------------------
17// Exports
18//--------------------------------------------------------------------------------------------------
19
20pub use error::*;
21pub use handler::*;
22pub use payload::*;
23pub use portal::*;
24pub use route::*;
25pub use state::*;