()
| 10 | }; |
| 11 | |
| 12 | fn main() { |
| 13 | if let Err(err) = build_console() { |
| 14 | panic!("failed to build vmm console: {err}"); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | fn build_console() -> Result<(), Box<dyn std::error::Error>> { |
| 19 | let manifest_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR")?); |
nothing calls this directly
no test coverage detected