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