Files
toollist/src/lib.rs
T
Oliver Walter 4d1133a33e
Build & Push Docker Image / Build and push (push) Failing after 17m10s
docker workflow
2026-06-06 16:14:02 +02:00

15 lines
286 B
Rust

#![recursion_limit = "512"]
pub mod app;
pub mod components;
pub mod models;
pub mod server;
#[cfg(feature = "hydrate")]
#[wasm_bindgen::prelude::wasm_bindgen]
pub fn hydrate() {
use crate::app::*;
console_error_panic_hook::set_once();
leptos::mount::hydrate_body(App);
}