hypestv/main.rs
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! Interactive CLI for Hyper-V VMs.
mod windows;
#[cfg(windows)]
fn main() -> anyhow::Result<()> {
pal_async::DefaultPool::run_with(windows::main)
}
#[cfg(not(windows))]
fn main() {
eprintln!("not supported on this platform");
std::process::exit(1);
}