2026-07-08 21:53:56 +02:00
|
|
|
pub mod app;
|
|
|
|
|
pub mod auth;
|
2026-07-27 23:52:27 +02:00
|
|
|
pub mod call;
|
2026-07-08 21:53:56 +02:00
|
|
|
pub mod chat;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "ssr")]
|
|
|
|
|
pub mod server;
|
|
|
|
|
|
2026-07-27 23:52:27 +02:00
|
|
|
#[cfg(feature = "hydrate")]
|
|
|
|
|
pub mod webrtc;
|
|
|
|
|
|
2026-07-08 21:53:56 +02:00
|
|
|
#[cfg(feature = "hydrate")]
|
|
|
|
|
#[wasm_bindgen::prelude::wasm_bindgen]
|
|
|
|
|
pub fn hydrate() {
|
|
|
|
|
console_error_panic_hook::set_once();
|
|
|
|
|
leptos::mount::hydrate_body(app::App);
|
|
|
|
|
}
|