Skip to main content

mockforge_workspace/
lib.rs

1//! Workspace management for MockForge
2//!
3//! This crate contains workspace-related functionality extracted from `mockforge-core`.
4//! Currently includes:
5//! - `git_watch`: Git repository watching and polling for spec/fixture sync
6//!
7//! More modules (workspace, workspace_persistence, sync_watcher, encryption, multi_tenant)
8//! will be migrated here in future work once their dependencies on other core modules
9//! (snapshots, templating) are resolved.
10
11pub mod git_watch;
12
13pub use git_watch::{GitWatchConfig, GitWatchService};