grove/Binary/Build/mod.rs
1//! Build Module (Binary)
2//!
3//! Provides runtime construction and service registration.
4//! Used by the standalone Grove executable.
5
6mod RuntimeBuildMod;
7mod ServiceRegisterMod;
8
9// Re-export public structs from submodules
10pub use RuntimeBuildMod::RuntimeBuild;
11pub use ServiceRegisterMod::ServiceRegister;
12
13#[cfg(test)]
14mod tests {
15 use super::*;
16
17 #[test]
18 fn test_module_exists() {
19 // Test that module can be imported
20 let _ = RuntimeBuild;
21 let _ = ServiceRegister;
22 }
23}