diff --git a/README.md b/README.md index 3665584..8f12b10 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/scripts/bash/build_bellande_framework.sh b/scripts/bash/build_bellande_framework.sh new file mode 100755 index 0000000..8ebfb62 --- /dev/null +++ b/scripts/bash/build_bellande_framework.sh @@ -0,0 +1 @@ +cargo build diff --git a/make_rust_executable.sh b/scripts/bash/make_rust_executable.sh similarity index 100% rename from make_rust_executable.sh rename to scripts/bash/make_rust_executable.sh diff --git a/scripts/bellos/build_bellande_framework.bellos b/scripts/bellos/build_bellande_framework.bellos new file mode 100755 index 0000000..8ebfb62 --- /dev/null +++ b/scripts/bellos/build_bellande_framework.bellos @@ -0,0 +1 @@ +cargo build diff --git a/make_rust_executable.bellos b/scripts/bellos/make_rust_executable.bellos similarity index 100% rename from make_rust_executable.bellos rename to scripts/bellos/make_rust_executable.bellos diff --git a/src/bellande_mesh_sync.rs b/src/bellande_mesh_sync.rs index 220b41e..84b9ade 100644 --- a/src/bellande_mesh_sync.rs +++ b/src/bellande_mesh_sync.rs @@ -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;