torii_lib/workspace/mod.rs
1//! Multi-repo and mirror management. Whereas [`crate::vcs`] is about a
2//! single repository's object database, this module is about the
3//! constellation of remotes and the workspace concept (N repos
4//! treated as one for status / sync / save fan-out).
5
6pub mod mirror;
7pub mod remote;
8// The single-file workspace logic kept its old `workspace.rs` name; it
9// gets re-exported at crate root via main.rs so call-sites that say
10// `crate::workspace::...` still resolve.
11pub mod workspace;