feat: list what the store holds for this repository

This commit is contained in:
2026-09-08 14:16:38 +00:00
parent 6389f3f1f5
commit 79ef5cca2d
3 changed files with 93 additions and 18 deletions

View File

@@ -75,6 +75,9 @@ fn run(ctx: &Ctx, command: cli::Commands) -> Result<ExitCode> {
force,
store,
} => commands::link::add(ctx, &paths, force, store.root.as_deref()).map(|()| done),
cli::Link::List { store } => {
commands::link::list(ctx, store.root.as_deref()).map(|()| done)
}
cli::Link::Restore { paths, all, store } => {
commands::link::restore(ctx, &paths, all, store.root.as_deref()).map(|()| done)
}