PartsRS/src/main.rs
2025-11-07 14:04:55 +01:00

6 lines
191 B
Rust

// In order to be compatible with both desktop, wasm, and android, the example is both a binary and a library.
// Just forward to the library in main
fn main() {
parts_rs_lib::main();
}