()
| 13 | const log = createLogger('Tools'); |
| 14 | |
| 15 | export async function initializeAllTools(): Promise<void> { |
| 16 | try { |
| 17 | await initializeLsp(); |
| 18 | initializeGit(); |
| 19 | log.info('All tool modules initialized'); |
| 20 | } catch (error) { |
| 21 | log.error('Failed to initialize tool modules', { error }); |
| 22 | } |
| 23 | } |
no test coverage detected