aion-server 0.13.4

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
//! Module declarations.

/// Catalog assembly and the published tool-name constants.
pub(crate) mod build;
/// The mutating tools: `start_run`, `signal`, `cancel`.
pub(crate) mod mutations;
/// The read tools: `describe_run`, `read_transcript`, `read_history`,
/// `list_runs`, `query`.
pub(crate) mod reads;
/// Schema fragments shared across tools.
pub(crate) mod shared;

pub(crate) use build::aion_tool_catalog;