aion-server 0.5.0

Aion workflow server library: HTTP, gRPC, WebSocket, and worker endpoints. Run it with the `aion` binary from the aion-cli crate.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Module declarations.

/// Operator deploy gRPC endpoint implementation.
pub mod deploy_grpc;
/// gRPC service implementation.
pub mod grpc;
/// Shared workflow operation handlers used by transports.
pub mod handlers;
/// HTTP and dashboard router construction.
pub mod http;
/// Shared schedule operation handlers used by transports.
pub mod schedule_handlers;
/// Remote-worker gRPC endpoint implementation.
pub mod worker_grpc;
/// WebSocket subscription request reading and JSON decoding.
pub mod ws_subscription;