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}
# 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
- https://git.bellande-technologies.com/BRSRI/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::sync::Arc;
mod config;
mod data;
mod dht;
mod encryption;
mod error;
mod mesh;
mod metrics;
mod node;
mod persistence;
pub mod algorithm;
pub mod config;
pub mod data;
pub mod dht;
pub mod encryption;
pub mod error;
pub mod mesh;
pub mod metrics;
pub mod node;
pub mod persistence;
pub mod tests;
pub mod utilities;
pub use crate::config::config::Config;
pub use crate::error::error::BellandeMeshError;