()
| 8 | * Initialize Git module and start monitoring workspace changes. |
| 9 | */ |
| 10 | export function initializeGit(): void { |
| 11 | try { |
| 12 | workspaceGitInitializer.start(); |
| 13 | log.info('Git module initialized'); |
| 14 | } catch (error) { |
| 15 | log.error('Failed to initialize Git module', { error }); |
| 16 | } |
| 17 | } |
no test coverage detected