peace_rt_model_core 0.0.3

Core runtime traits for the peace automation framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core runtime traits for the peace automation framework.
//!
//! These types are in this crate so that the `rt_model_native` and
//! `rt_model_web` crates are able to reference them and either use or provide
//! default implementations.

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

pub use crate::output_write::OutputWrite;

mod output_write;