Skip to content

Commit

Permalink
Merge pull request #9576 from Turbo87/jobs
Browse files Browse the repository at this point in the history
worker/jobs: Move index-related jobs into dedicated modules
  • Loading branch information
Turbo87 authored Oct 4, 2024
2 parents 2d33f01 + f693720 commit 0837f0b
Show file tree
Hide file tree
Showing 6 changed files with 339 additions and 316 deletions.
314 changes: 0 additions & 314 deletions src/worker/jobs/git.rs

This file was deleted.

10 changes: 10 additions & 0 deletions src/worker/jobs/index/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//! This module contains all background jobs related to the git and
//! sparse indexes.

mod normalize;
mod squash;
mod sync;

pub use normalize::NormalizeIndex;
pub use squash::SquashIndex;
pub use sync::{SyncToGitIndex, SyncToSparseIndex};
Loading

0 comments on commit 0837f0b

Please sign in to comment.