- Create dedicated service classes for separated concerns: * AgentService: Agent management and health monitoring * WorkflowService: Workflow parsing and execution tracking * PerformanceService: Metrics and load balancing * BackgroundService: Background processes and cleanup * TaskService: Database persistence (already existed) - Refactor UnifiedCoordinator into UnifiedCoordinatorRefactored * Clean separation of responsibilities * Improved maintainability and testability * Dependency injection pattern for services * Clear service boundaries and interfaces - Maintain backward compatibility through re-exports - Update main.py to use refactored coordinator 🚀 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
626 B
JavaScript
23 lines
626 B
JavaScript
/**
|
|
* @license lucide-react v0.453.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import createLucideIcon from '../createLucideIcon.js';
|
|
|
|
const Apple = createLucideIcon("Apple", [
|
|
[
|
|
"path",
|
|
{
|
|
d: "M12 20.94c1.5 0 2.75 1.06 4 1.06 3 0 6-8 6-12.22A4.91 4.91 0 0 0 17 5c-2.22 0-4 1.44-5 2-1-.56-2.78-2-5-2a4.9 4.9 0 0 0-5 4.78C2 14 5 22 8 22c1.25 0 2.5-1.06 4-1.06Z",
|
|
key: "3s7exb"
|
|
}
|
|
],
|
|
["path", { d: "M10 2c1 .5 2 2 2 5", key: "fcco2y" }]
|
|
]);
|
|
|
|
export { Apple as default };
|
|
//# sourceMappingURL=apple.js.map
|