saito_core/
lib.rs

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.
3
4pub mod core;
5
6#[cfg(test)]
7mod tests {
8    #[test]
9    fn it_works() {
10        let result = 2 + 2;
11        assert_eq!(result, 4);
12    }
13}