Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bastibl committed Mar 24, 2024
1 parent 1375cd3 commit 2ab05e0
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions examples/wasm/src/bin/flowgraph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ fn main() -> futuresdr::anyhow::Result<()> {
pub fn main() {
std::panic::set_hook(Box::new(console_error_panic_hook::hook));
console_log::init().expect("could not initialize logger");
wasm_bindgen_futures::spawn_local(
async {
wasm::run().await.unwrap();
}
);
wasm_bindgen_futures::spawn_local(async {
wasm::run().await.unwrap();
});
}

0 comments on commit 2ab05e0

Please sign in to comment.