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:
//    30 Sep 2022, 16:21:24
//  Last edited:
//    01 May 2024, 10:44:25
//  Auto updated?
//    Yes
//
//  Description:
//!   The `brane-shr` crate defines common functions and other tools used
//!   throughout the framework. This crate differs from the
//!   `specifications` crate in that it does not aim to standerdize
//!   things, but rather just provide a common implementation.
//

// Declare some modules
pub mod errors;
pub mod formatters;
pub mod fs;
pub mod input;
pub mod jobs;
// pub mod kafka;
pub mod utilities;