plate-tool/src/main.rs

10 lines
195 B
Rust
Raw Normal View History

2023-05-12 20:38:14 +00:00
use plate_tool::plate_test;
2023-05-13 23:13:03 +00:00
use plate_tool::App;
2023-05-11 21:49:03 +00:00
use wasm_logger;
fn main() {
2023-05-13 23:13:03 +00:00
// wasm_logger::init(wasm_logger::Config::default());
// dioxus_web::launch(App);
2023-05-12 20:38:14 +00:00
plate_test();
2023-05-11 21:49:03 +00:00
}