pub mod app; pub mod error_template; #[cfg(feature = "ssr")] pub mod fileserv; pub mod components; pub mod routes; pub mod server; const DB_URL: &str = "http://localhost:4000"; const DB_USER: &str = "saleor-marketplace"; const DB_PASSWORD: &str = r##"{%cA_#dr}{3ZDGC,Jy<+S-_M+FE?]][Cu#ND_V"##; #[cfg(feature = "hydrate")] #[wasm_bindgen::prelude::wasm_bindgen] pub fn hydrate() { use crate::app::*; console_error_panic_hook::set_once(); leptos::mount_to_body(App); }