forge-runtime 0.0.2-alpha

Runtime executors and gateway for the Forge framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod auth;
mod metrics;
mod request;
mod response;
mod rpc;
mod server;
mod tracing;
pub mod websocket;

pub use auth::{AuthConfig, AuthMiddleware};
pub use metrics::{metrics_middleware, MetricsState};
pub use request::RpcRequest;
pub use response::{RpcError, RpcResponse};
pub use rpc::RpcHandler;
pub use server::{GatewayConfig, GatewayServer};
pub use tracing::TracingMiddleware;
pub use websocket::{ws_handler, JobData, WorkflowData, WorkflowStepData, WsState};