()
| 163 | |
| 164 | #[tokio::main] |
| 165 | async fn main() -> Result<()> { |
| 166 | #[cfg(target_os = "windows")] |
| 167 | { |
| 168 | windows_impl::main_body().await |
| 169 | } |
| 170 | #[cfg(not(target_os = "windows"))] |
| 171 | { |
| 172 | println!("This example is only available on Windows."); |
| 173 | Ok(()) |
| 174 | } |
| 175 | } |
nothing calls this directly
no test coverage detected