brane_drv/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//  LIB.rs
//    by Lut99
//
//  Created:
//    26 Sep 2022, 12:00:46
//  Last edited:
//    06 Feb 2024, 11:46:27
//  Auto updated?
//    Yes
//
//  Description:
//!   The `brane-drv` crate implements the 'user delegate' in the central
//!   compute node. To be more precise, it takes user workflows and runs
//!   them, scheduling and orchestrating external function calls (tasks)
//!   where necessary.
//

// Declare the modules
pub mod check;
pub mod errors;
pub mod gc;
pub mod handler;
pub mod planner;
pub mod spec;
pub mod vm;