diff --git a/src/cli/commands/day001.rs b/src/cli/commands/day001.rs index 991b5b5..5e7959f 100644 --- a/src/cli/commands/day001.rs +++ b/src/cli/commands/day001.rs @@ -1,4 +1,4 @@ -use crate::cli::PathBuf; +use std::path::PathBuf; use crate::util::read_lines; pub fn subcmd_day001(file: &Option, top: &i32, total: &bool) { diff --git a/src/cli/commands/day002.rs b/src/cli/commands/day002.rs index 0506888..24a1ef5 100644 --- a/src/cli/commands/day002.rs +++ b/src/cli/commands/day002.rs @@ -1,4 +1,4 @@ -use crate::cli::PathBuf; +use std::path::PathBuf; use crate::util::read_lines; #[derive(Debug)] diff --git a/src/cli/commands/day003.rs b/src/cli/commands/day003.rs index 394bf0e..9df6dee 100644 --- a/src/cli/commands/day003.rs +++ b/src/cli/commands/day003.rs @@ -1,4 +1,4 @@ -use crate::cli::PathBuf; +use std::path::PathBuf; use crate::util::read_lines; #[derive(Debug,Clone)]