Files
wgpu/wgpu-info/src/main.rs
2023-06-15 19:56:15 +00:00

17 lines
311 B
Rust

#[cfg(not(target_arch = "wasm32"))]
mod cli;
#[cfg(not(target_arch = "wasm32"))]
mod human;
#[cfg(not(target_arch = "wasm32"))]
mod report;
#[cfg(not(target_arch = "wasm32"))]
mod texture;
fn main() -> anyhow::Result<()> {
#[cfg(not(target_arch = "wasm32"))]
{
cli::main()?;
}
Ok(())
}