atento-core 0.1.0

Core engine for the Atento Chained Script CLI
Documentation
1
2
3
4
5
6
7
8
use serde::Deserialize;

/// A reference to a step output that should be included in the chain results.
#[derive(Debug, Clone, Deserialize)]
pub struct ResultRef {
    #[serde(rename = "ref")]
    pub ref_: String,
}