This commit is contained in:
Simon Gardling
2022-02-23 15:37:58 -05:00
parent e049038813
commit e7583b5497
4 changed files with 43 additions and 41 deletions

View File

@@ -1,13 +1,13 @@
#![allow(clippy::unused_unit)] // Fixes clippy keep complaining about wasm_bindgen
#![allow(clippy::type_complexity)] // Clippy, my types are fine.
mod misc;
mod egui_app;
mod chart_manager;
mod egui_app;
mod misc;
use std::panic;
#[cfg(target_arch = "wasm32")]
use eframe::{epi, egui};
use eframe::{egui, epi};
#[cfg(target_arch = "wasm32")]
use wasm_bindgen::prelude::*;