Initial upload: DotMigrate dotfiles migration tool with CI/CD
Some checks failed
CI / test (push) Has been cancelled
CI / release (push) Has been cancelled

This commit is contained in:
2026-02-04 09:52:59 +00:00
parent 77edbab42d
commit 365cb0b7fc

8
src/main.rs Normal file
View File

@@ -0,0 +1,8 @@
use dotmigrate::run;
fn main() {
if let Err(e) = run() {
eprintln!("Error: {:#}", e);
std::process::exit(1);
}
}