Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Jan 16, 2025
1 parent 1e088c2 commit c227c49
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ee/tabby-webserver/src/service/background_job/daily.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use std::sync::Arc;

use crate::service::background_job::LicenseCheckJob;
use chrono::Utc;
use serde::{Deserialize, Serialize};
use tabby_schema::{license::LicenseService, notification::NotificationService};

use super::helper::Job;
use crate::service::background_job::LicenseCheckJob;

#[derive(Debug, Serialize, Deserialize, Clone)]

Check warning on line 10 in ee/tabby-webserver/src/service/background_job/daily.rs

View check run for this annotation

Codecov / codecov/patch

ee/tabby-webserver/src/service/background_job/daily.rs#L10

Added line #L10 was not covered by tests
pub struct DailyJob;
Expand Down
8 changes: 4 additions & 4 deletions ee/tabby-webserver/src/service/background_job/hourly.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
use std::sync::Arc;

use crate::service::background_job::{
db::DbMaintainanceJob, IndexGarbageCollection, SchedulerGitJob, SchedulerGithubGitlabJob,
SyncIntegrationJob,
};
use chrono::Utc;
use serde::{Deserialize, Serialize};
use tabby_db::DbConn;
Expand All @@ -15,6 +11,10 @@ use tabby_schema::{
};

use super::helper::Job;
use crate::service::background_job::{
db::DbMaintainanceJob, IndexGarbageCollection, SchedulerGitJob, SchedulerGithubGitlabJob,
SyncIntegrationJob,
};

#[derive(Debug, Serialize, Deserialize, Clone)]

Check warning on line 19 in ee/tabby-webserver/src/service/background_job/hourly.rs

View check run for this annotation

Codecov / codecov/patch

ee/tabby-webserver/src/service/background_job/hourly.rs#L19

Added line #L19 was not covered by tests
pub struct HourlyJob;
Expand Down

0 comments on commit c227c49

Please sign in to comment.