Skip to main content

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
6pub mod RuntimeBuild;
7
8pub mod ServiceRegister;
9
10#[cfg(test)]
11mod tests {
12
13	use super::*;
14
15	#[test]
16	fn test_module_exists() {
17		// Test that module can be imported
18		let _ = RuntimeBuild::RuntimeBuild;
19
20		let _ = ServiceRegister::ServiceRegister;
21	}
22}