Skip to content

Commit

Permalink
module name change
Browse files Browse the repository at this point in the history
  • Loading branch information
radek00 committed Aug 13, 2024
1 parent b38e657 commit e232393
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/backup/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use backup_error::{BackupError, BackupSuccess};
use backup_result::{BackupError, BackupSuccess};
use chrono::{self, Datelike};
use clap::builder::styling::{AnsiColor, Effects, Styles};
use clap::ArgAction;
Expand All @@ -13,7 +13,7 @@ use utils::{
validate_destination_path,
};

mod backup_error;
mod backup_result;
mod notification;
mod utils;

Expand Down
2 changes: 1 addition & 1 deletion src/backup/utils.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::{path::Path, process::Command};

use super::{backup_error::BackupError, TargetOs};
use super::{backup_result::BackupError, TargetOs};

pub fn check_docker() -> Result<(), BackupError> {
let status = Command::new("docker").arg("--version").status()?;
Expand Down

0 comments on commit e232393

Please sign in to comment.