mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
21 lines
350 B
Rust
21 lines
350 B
Rust
#![recursion_limit = "256"]
|
|
#![allow(clippy::nonstandard_macro_braces)]
|
|
mod api;
|
|
mod app;
|
|
mod cookies;
|
|
mod create_user;
|
|
mod graphql;
|
|
mod login;
|
|
mod logout;
|
|
mod user_details;
|
|
mod user_table;
|
|
|
|
use wasm_bindgen::prelude::{wasm_bindgen, JsValue};
|
|
|
|
#[wasm_bindgen]
|
|
pub fn run_app() -> Result<(), JsValue> {
|
|
yew::start_app::<app::App>();
|
|
|
|
Ok(())
|
|
}
|