Skip to content

Commit 0837f0b

Browse files
authored
Merge pull request #9576 from Turbo87/jobs
worker/jobs: Move index-related jobs into dedicated modules
2 parents 2d33f01 + f693720 commit 0837f0b

File tree

6 files changed

+339
-316
lines changed

6 files changed

+339
-316
lines changed

src/worker/jobs/git.rs

Lines changed: 0 additions & 314 deletions
This file was deleted.

src/worker/jobs/index/mod.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
//! This module contains all background jobs related to the git and
2+
//! sparse indexes.
3+
4+
mod normalize;
5+
mod squash;
6+
mod sync;
7+
8+
pub use normalize::NormalizeIndex;
9+
pub use squash::SquashIndex;
10+
pub use sync::{SyncToGitIndex, SyncToSparseIndex};

0 commit comments

Comments
 (0)