From c25d22681f9bc6ddba512895182af0ce0252731b Mon Sep 17 00:00:00 2001 From: Mel Date: Mon, 20 Sep 2021 22:25:55 +0200 Subject: Split out common logic --- src/actions/mod.rs | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/actions/mod.rs (limited to 'src/actions/mod.rs') diff --git a/src/actions/mod.rs b/src/actions/mod.rs new file mode 100644 index 0000000..588ce8f --- /dev/null +++ b/src/actions/mod.rs @@ -0,0 +1,30 @@ +mod create; +mod shift; +mod update; + +use std::path::{Path, PathBuf}; + +pub use create::create; +pub use shift::shift; +pub use update::update; + +pub struct ActionOptions { + pub repository_path: PathBuf, +} + +impl ActionOptions { + pub fn from_path(path: &str) -> Self { + ActionOptions { + repository_path: Path::new(path).to_path_buf(), + } + } + + pub fn from_pwd() -> Result { + let current_path = std::env::current_dir(); + if let Ok(repository_path) = current_path { + Ok(ActionOptions { repository_path }) + } else { + Err(()) + } + } +} -- cgit 1.4.1