sciforge-hub 0.0.4

Central hub orchestrating Sciforge subsystems (api, engine, tools).
Documentation
1
2
3
4
5
6
7
8
9
//! Data-transfer objects exchanged between the API layer and the engine.
//!
//! Contains the [`request::ComputeRequest`] and [`response::ComputeResponse`]
//! payloads used by both HTTP and CLI adapters.

/// Inbound computation request payload.
pub mod request;
/// Outbound computation response payload.
pub mod response;