flowr 1.0.0

Runners for compiled 'flow' programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[allow(clippy::module_name_repetitions)]
pub mod cli_client;
#[cfg(feature = "debugger")]
#[allow(clippy::module_name_repetitions)]
pub mod cli_debug_client;
#[cfg(feature = "debugger")]
#[allow(clippy::module_name_repetitions)]
pub mod cli_debug_handler;
#[allow(clippy::module_name_repetitions)]
pub mod cli_submission_handler;
pub mod connections;
pub mod coordinator_message;
/// 'debug' defines structs passed between the Server and the Client regarding debug events
/// and client responses to them
#[cfg(feature = "debugger")]
pub mod debug_message;
pub(crate) mod test_helper;