peace_cfg 0.0.15

Configuration model for the peace automation framework.
Documentation
//! Configuration model for the peace automation library.
//!
//! This crate defines the API for logic and data to be used in the `peace`
//! framework.

// Re-exports
pub use async_trait::async_trait;
pub use peace_core::*;

pub use crate::{apply_check::ApplyCheck, fn_ctx::FnCtx, item::Item, state::State};

#[cfg(feature = "output_progress")]
pub use crate::ref_into::RefInto;

pub mod accessors;
pub mod state;

mod apply_check;
mod fn_ctx;
mod item;

#[cfg(feature = "output_progress")]
mod ref_into;