0c66fc6010
Move three directories into their target topology: - doctate-common/ -> common/ - client-desktop/ -> clients/desktop/ - watch/wearos/ -> clients/wearos/ Update doctate-common path-dependency in 3 Cargo.toml files (server, clients/desktop, experiments) and the workspace members list in the root Cargo.toml. Crate names unchanged (doctate-server, doctate-common, doctate-desktop). Workspace still in single-Cargo.lock form; isolation into standalone workspaces follows in stage 3. All 508 tests pass, experiments standalone-workspace also resolves the new path.
22 lines
546 B
Rust
22 lines
546 B
Rust
//! Desktop dictation client — Linux + Windows.
|
|
//!
|
|
//! Modules listed here are intentionally `pub` so that the Wear-OS
|
|
//! mirror (Kotlin) can reference canonical Rust paths via doc anchors
|
|
//! like `doctate-desktop::pending_cleanup::cleanup_orphan_audio`.
|
|
|
|
pub mod app;
|
|
pub mod case_store;
|
|
pub mod case_update;
|
|
pub mod config;
|
|
pub mod config_path;
|
|
pub mod footer_status;
|
|
pub mod magic_link;
|
|
pub mod paths;
|
|
pub mod pending_cleanup;
|
|
pub mod recorder;
|
|
pub mod server_sync;
|
|
pub mod snapshot_cache;
|
|
pub mod startup;
|
|
pub mod state;
|
|
pub mod upload;
|