Skip to main content

wami_core/
lib.rs

1//! Core primitives shared across the WAMI workspace.
2
3pub mod actions;
4pub mod arn;
5pub mod context;
6pub mod error;
7pub mod traits;
8pub mod types;
9
10pub use actions::{ActionInfo, ActionParseError, ActionRegistry, WamiAction, WamiServicePrefix};
11pub use context::{
12    SessionInfo, Step, Transition, WamiContext, WamiContextBuilder, MAX_PROVENANCE_DEPTH,
13};
14pub use error::{AmiError, OptionExt, Result};
15pub use types::*;