1//! This module implements the core logic layer for saito. Every node which hopes to run the
2//! saito consensus should be implemented with this library.
34pub mod core;
56#[cfg(test)]
7mod tests {
8#[test]
9fn it_works() {
10let result = 2 + 2;
11assert_eq!(result, 4);
12 }
13}