()
| 43 | } |
| 44 | |
| 45 | static async openProjectDialog(): Promise<string | null> { |
| 46 | return await this.openFolderDialog('Select Project Directory'); |
| 47 | } |
| 48 | |
| 49 | static async openProject(path: string): Promise<string> { |
| 50 | return await invoke<string>('open_project', { path }); |
no test coverage detected