(params: WorkspaceInitParams)
| 108 | } |
| 109 | |
| 110 | async initWorkspace(params: WorkspaceInitParams): Promise<WorkspaceInitResult> { |
| 111 | return runWorkspaceInitHook({ |
| 112 | params, |
| 113 | runtimeType: "worktree", |
| 114 | hookCheckPath: params.projectPath, |
| 115 | runHook: async ({ muxEnv, initLogger, abortSignal }) => { |
| 116 | await this.runInitHook(params.workspacePath, muxEnv, initLogger, abortSignal); |
| 117 | }, |
| 118 | }); |
| 119 | } |
| 120 | |
| 121 | async renameWorkspace( |
| 122 | projectPath: string, |
nothing calls this directly
no test coverage detected