mirror of
https://github.com/lldap/lldap.git
synced 2026-07-25 17:58:44 +00:00
app: reorganize and add a page to change the password
This commit is contained in:
committed by
nitnelave
parent
a184cce38f
commit
005e18472e
+3
-10
@@ -1,20 +1,13 @@
|
||||
#![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;
|
||||
pub mod components;
|
||||
pub mod infra;
|
||||
|
||||
use wasm_bindgen::prelude::{wasm_bindgen, JsValue};
|
||||
|
||||
#[wasm_bindgen]
|
||||
pub fn run_app() -> Result<(), JsValue> {
|
||||
yew::start_app::<app::App>();
|
||||
yew::start_app::<components::app::App>();
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user