Files
mnote/rust/crates/mnote-web/src/lib.rs
T

18 lines
343 B
Rust
Raw Normal View History

#![recursion_limit = "1024"]
pub mod app;
pub mod context;
pub mod editor_actor;
pub mod error;
2026-05-14 15:10:33 +08:00
pub mod hermes_tools;
pub mod local_folder_watcher_registry;
pub mod middleware;
2026-04-29 12:24:44 +08:00
pub mod page_aggregate;
pub mod routes;
2026-04-29 12:24:44 +08:00
pub mod ssr;
pub mod transport;
pub mod tree_shell;
2026-04-29 12:24:44 +08:00
pub mod workspace_shell;
pub use app::{build_app, AppConfig, AppState};