agent-ecosystem/src/main/services/index.ts
iliya 51f8f3545c style: auto-fix import/export sorting and formatting
Ran pnpm lint:fix to resolve 220 auto-fixable lint issues.
All changes are import/export reordering — no logic changes.
2026-03-16 20:48:42 +02:00

19 lines
607 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 './extensions';
export * from './infrastructure';
export * from './parsing';
export * from './schedule';
export * from './team';