git_sync_rs/lib.rs
1pub mod config;
2pub mod error;
3pub mod sync;
4pub mod watch;
5
6pub use config::{Config, ConfigLoader, DefaultConfig, RepositoryConfig};
7pub use error::{Result, SyncError};
8pub use sync::{
9 RepositoryState, RepositorySynchronizer, SyncConfig, SyncState, UnhandledFileState,
10};
11pub use watch::{watch_with_periodic_sync, WatchConfig, WatchManager};