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

37 lines
812 B
Rust
Raw Normal View History

#![recursion_limit = "1024"]
2026-05-17 16:15:52 +08:00
pub mod acp_bridge;
pub mod acp_client;
pub mod acp_runtime;
pub mod acp_session_manager;
pub mod acp_types;
pub mod api_chat;
pub mod app;
pub mod context;
2026-05-20 10:43:38 +08:00
pub mod document_buffer_store;
pub mod editor_actor;
pub mod error;
pub mod evidence_parse;
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;
2026-06-26 20:01:02 +08:00
pub mod provider_identity_sync;
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};
#[cfg(test)]
pub(crate) mod test_support {
use std::sync::{Mutex, OnceLock};
pub(crate) fn hermes_env_lock() -> &'static Mutex<()> {
static LOCK: OnceLock<Mutex<()>> = OnceLock::new();
LOCK.get_or_init(|| Mutex::new(()))
}
}