hypestv/
main.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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);
}