This commit is contained in:
2025-04-07 12:06:06 -04:00
parent 705f446d5e
commit 707b6dd504
6 changed files with 22 additions and 9 deletions

View File

@@ -1,5 +1,13 @@
# Bellande Mesh Sync {BMS} # Bellande Mesh Sync {BMS}
# Run Bellos Scripts
- build_bellande_framework.bellos
- make_rust_executable.bellos
# Run Bash Scripts
- build_bellande_framework.sh
- make_rust_executable.sh
# Bellande Search Path API # Bellande Search Path API
- https://git.bellande-technologies.com/BRSRI/bellande_search_path_api - https://git.bellande-technologies.com/BRSRI/bellande_search_path_api
- https://github.com/Robotics-Sensors/bellande_search_path_api - https://github.com/Robotics-Sensors/bellande_search_path_api

View File

@@ -0,0 +1 @@
cargo build

View File

@@ -0,0 +1 @@
cargo build

View File

@@ -16,15 +16,18 @@
use std::path::PathBuf; use std::path::PathBuf;
use std::sync::Arc; use std::sync::Arc;
mod config; pub mod algorithm;
mod data; pub mod config;
mod dht; pub mod data;
mod encryption; pub mod dht;
mod error; pub mod encryption;
mod mesh; pub mod error;
mod metrics; pub mod mesh;
mod node; pub mod metrics;
mod persistence; pub mod node;
pub mod persistence;
pub mod tests;
pub mod utilities;
pub use crate::config::config::Config; pub use crate::config::config::Config;
pub use crate::error::error::BellandeMeshError; pub use crate::error::error::BellandeMeshError;