aion-server 0.1.0

Deployable HTTP, gRPC, WebSocket, and worker endpoint for Aion workflows.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Module declarations.

/// 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;