(path: string)
| 260 | } |
| 261 | |
| 262 | export async function addWorkspace(path: string): Promise<WorkspaceInfo> { |
| 263 | return invoke<WorkspaceInfo>("add_workspace", { path }); |
| 264 | } |
| 265 | |
| 266 | export async function addWorkspaceFromGitUrl( |
| 267 | url: string, |
no outgoing calls
no test coverage detected