mirror of
https://github.com/lldap/lldap.git
synced 2026-06-18 21:38:43 +00:00
18 lines
432 B
Rust
18 lines
432 B
Rust
#![recursion_limit = "256"]
|
|
#![forbid(non_ascii_idents)]
|
|
#![allow(clippy::uninlined_format_args)]
|
|
#![allow(clippy::let_unit_value)]
|
|
#![allow(clippy::unnecessary_operation)] // Doesn't work well with the html macro.
|
|
|
|
pub mod components;
|
|
pub mod infra;
|
|
|
|
use wasm_bindgen::prelude::{JsValue, wasm_bindgen};
|
|
|
|
#[wasm_bindgen]
|
|
pub fn run_app() -> Result<(), JsValue> {
|
|
yew::start_app::<components::app::AppContainer>();
|
|
|
|
Ok(())
|
|
}
|