Working application
This commit is contained in:
18
reaction_systems_gui/src/lib.rs
Normal file
18
reaction_systems_gui/src/lib.rs
Normal file
@ -0,0 +1,18 @@
|
||||
#![forbid(unsafe_code)]
|
||||
#![warn(clippy::all, rust_2018_idioms)]
|
||||
// Forbid warnings in release builds
|
||||
#![cfg_attr(not(debug_assertions), deny(warnings))]
|
||||
|
||||
mod app;
|
||||
mod app_logic;
|
||||
mod helper;
|
||||
|
||||
pub use app::AppHandle;
|
||||
|
||||
// If compiling for web
|
||||
#[cfg(target_arch = "wasm32")]
|
||||
mod web;
|
||||
|
||||
// Export endpoints for wasm
|
||||
#[cfg(target_arch = "wasm32")]
|
||||
pub use web::*;
|
||||
Reference in New Issue
Block a user