2026-07-29 19:38:40 +02:00
|
|
|
pub mod answers;
|
|
|
|
|
pub mod app;
|
|
|
|
|
pub mod auth;
|
|
|
|
|
pub mod chain;
|
|
|
|
|
pub mod content;
|
|
|
|
|
pub mod events;
|
|
|
|
|
pub mod resource;
|
|
|
|
|
|
2026-08-06 08:52:29 +02:00
|
|
|
#[cfg(feature = "ssr")]
|
|
|
|
|
pub mod aggregates;
|
|
|
|
|
|
2026-08-30 12:34:34 +02:00
|
|
|
#[cfg(feature = "ssr")]
|
|
|
|
|
pub mod announce;
|
|
|
|
|
|
2026-07-29 19:38:40 +02:00
|
|
|
#[cfg(feature = "ssr")]
|
|
|
|
|
pub mod server;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "ssr")]
|
|
|
|
|
pub mod upload;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "hydrate")]
|
|
|
|
|
#[wasm_bindgen::prelude::wasm_bindgen]
|
|
|
|
|
pub fn hydrate() {
|
|
|
|
|
console_error_panic_hook::set_once();
|
|
|
|
|
leptos::mount::hydrate_body(app::App);
|
|
|
|
|
}
|