Begin Implementing V2 features

This commit is contained in:
Breadway 2026-05-11 20:56:10 +08:00
parent f0ef411697
commit e5611567c2
18 changed files with 3433 additions and 121 deletions

10
bread-sync/src/lib.rs Normal file
View file

@ -0,0 +1,10 @@
pub mod config;
pub mod delegates;
pub mod git;
pub mod machine;
pub mod packages;
pub use config::{
bread_config_dir, config_path, sync_repo_path, DelegatesConfig, MachineConfig, PackagesConfig,
RemoteConfig, SyncConfig,
};