Files
dotmigrate/src/main.rs
7000pctAUTO 365cb0b7fc
Some checks failed
CI / test (push) Has been cancelled
CI / release (push) Has been cancelled
Initial upload: DotMigrate dotfiles migration tool with CI/CD
2026-02-04 09:52:59 +00:00

9 lines
138 B
Rust

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