feat: add link command

This commit is contained in:
2026-09-03 15:36:21 +02:00
parent 63d04a9393
commit 54395f83e4
7 changed files with 812 additions and 2 deletions

View File

@@ -40,5 +40,13 @@ fn main() -> Result<()> {
cli::Postgres::Dump { path } => scripts::postgres::dump(&db_container, &path),
}
}
cli::Commands::Link { command } => match command {
cli::Link::Add { paths, force } => scripts::link::add(&paths, force),
cli::Link::Check {
paths,
porcelain,
null,
} => scripts::link::check(&paths, porcelain, null),
},
}
}