From 365cb0b7fc1c7550981db45c8e0f36e36d38cc13 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 09:52:59 +0000 Subject: [PATCH] Initial upload: DotMigrate dotfiles migration tool with CI/CD --- src/main.rs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/main.rs diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e741e1a --- /dev/null +++ b/src/main.rs @@ -0,0 +1,8 @@ +use dotmigrate::run; + +fn main() { + if let Err(e) = run() { + eprintln!("Error: {:#}", e); + std::process::exit(1); + } +}