aion_server/api/mod.rs
1//! Module declarations.
2
3/// Operator deploy gRPC endpoint implementation.
4pub mod deploy_grpc;
5/// gRPC service implementation.
6pub mod grpc;
7/// Shared workflow operation handlers used by transports.
8pub mod handlers;
9/// HTTP and dashboard router construction.
10pub mod http;
11/// Shared schedule operation handlers used by transports.
12pub mod schedule_handlers;
13/// Remote-worker gRPC endpoint implementation.
14pub mod worker_grpc;
15/// WebSocket subscription request reading and JSON decoding.
16pub mod ws_subscription;