add:add command + add existing

This commit is contained in:
kokopi-dev
2026-04-04 22:45:23 +09:00
parent 973356cda5
commit 69fa44b36a
19 changed files with 1088 additions and 0 deletions

6
src/cli/remove.rs Normal file
View File

@@ -0,0 +1,6 @@
use crate::{error::AppError, services::ServiceStore};
pub fn run(_store: &ServiceStore) -> Result<(), AppError> {
// TODO: load registry, prompt for selection, delete shim, update registry
Ok(())
}