aion-server 0.14.1

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
16
//! Server-side Gleam authoring surface: compile, type-check, package, and
//! hot-load submitted workflow source.
//!
//! Mounted only when `[authoring].gleam_path` is configured. The handlers are
//! transport-agnostic; the HTTP facade lives in `crate::api::http::authoring`.

/// Authoring API error taxonomy and wire mapping.
pub mod error;
/// Transport-agnostic compile-and-hot-load handler.
pub mod handlers;

pub use error::AuthoringApiError;
pub use handlers::{
    CompileSourceRequest, CompileSourceResponse, compile_and_load, compile_and_load_document,
    compile_and_load_with_options,
};