(info, context)
| 77 | })) |
| 78 | }, |
| 79 | async remove(info, context) { |
| 80 | const { AppRuntime, Worktree } = await loadWorktree() |
| 81 | const config = decodeWorktreeConfig(info) |
| 82 | await AppRuntime.runPromise( |
| 83 | provideContext( |
| 84 | Worktree.Service.use((svc) => svc.remove({ directory: config.directory })), |
| 85 | context, |
| 86 | ), |
| 87 | ) |
| 88 | }, |
| 89 | target(info) { |
| 90 | const config = decodeWorktreeConfig(info) |
| 91 | return { |
nothing calls this directly
no test coverage detected