From 24bb31c109332ae982b7091ffcd5183442ce6f6f Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 10 May 2026 20:01:21 +0900 Subject: refactor(vcs): move VCS drivers under repository module Mirror Composer's structure where VCS drivers live under Repository/Vcs/. Rename VcsDriver trait to VcsDriverInterface and BitbucketDriver to GitBitbucketDriver to match Composer naming, and add stubs for FossilDriver, PerforceDriver, and the VcsDriver base. --- crates/mozart-core/src/repository.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/mozart-core/src/repository.rs') diff --git a/crates/mozart-core/src/repository.rs b/crates/mozart-core/src/repository.rs index ba96729..ce6de85 100644 --- a/crates/mozart-core/src/repository.rs +++ b/crates/mozart-core/src/repository.rs @@ -14,6 +14,7 @@ pub mod path_repository; pub mod repository; pub mod repository_filter; pub mod resolver; +pub mod vcs; pub mod vcs_bridge; pub mod version; pub mod version_selector; -- cgit v1.3.1