From 6d93e02ddd0c43dba5542a4b2f6613045da50f37 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/lib.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/lib.rs diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..364b869 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,11 @@ +pub mod cli; +pub mod config; +pub mod detect; +pub mod backup; +pub mod sync; +pub mod merge; + +pub fn run() -> anyhow::Result<()> { + let args = cli::Args::parse(); + cli::execute(args) +}