agent-ecosystem/src/main/services/index.ts
iliya 70915a152a feat(team-management): iteration 1, enhance Team Management feature with IPC integration and UI components
- Introduced TeamDataService for managing team-related data.
- Updated IPC handlers to include team management functionalities.
- Added new API channels for team listing and integrated them into the UI.
- Enhanced the renderer components to support team views and interactions.
- Implemented utility functions for team directory path management.
2026-02-17 21:30:37 +02:00

17 lines
549 B
TypeScript

/**
* Services barrel export - Re-exports all services for backward compatibility.
*
* Domain organization:
* - analysis/: Chunk building and session analysis
* - discovery/: Scanning and locating session data
* - error/: Error detection and notification triggers
* - infrastructure/: Core application infrastructure
* - parsing/: Parsing JSONL and configuration files
*/
export * from './analysis';
export * from './discovery';
export * from './error';
export * from './infrastructure';
export * from './parsing';
export * from './team';