19 lines
357 B
Rust
19 lines
357 B
Rust
#![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::*;
|