aion-server 0.10.0

Aion workflow server library: HTTP, gRPC, WebSocket, and worker endpoints. Run it with the `aion` binary from the aion-cli crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Graph projection of a parsed AWL document — the canvas's 1:1 picture.
//!
//! Every step is a node; every node is a step. Step kinds come from the
//! checker's semantic index (never re-derived here); this module only adds
//! the label text and edge geometry the canvas draws.

mod build;
mod edges;
mod types;

#[cfg(test)]
mod tests;

pub use build::build;
pub use types::{GraphProjection, ProjectionEdgeKind};