1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! A crate that implements the functionality behind the wasmCloud shell
//!
//! The `wash` command line interface <https://github.com/wasmcloud/wash> is a great place
//! to find examples on how to fully utilize this library.

#[cfg(feature = "start")]
pub mod start;

#[cfg(feature = "parser")]
pub mod parser;

#[cfg(feature = "cli")]
pub mod build;
#[cfg(feature = "cli")]
pub mod cli;

pub mod config;
pub mod context;
pub mod drain;
pub mod id;
pub mod keys;
pub mod registry;