wami-core 0.16.0

Core primitives for wami: ARNs, contexts, errors and shared types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core primitives shared across the WAMI workspace.

pub mod actions;
pub mod arn;
pub mod context;
pub mod error;
pub mod traits;
pub mod types;

pub use actions::{ActionInfo, ActionParseError, ActionRegistry, WamiAction, WamiServicePrefix};
pub use context::{
    SessionInfo, Step, Transition, WamiContext, WamiContextBuilder, MAX_PROVENANCE_DEPTH,
};
pub use error::{AmiError, OptionExt, Result};
pub use types::*;