- 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>
32 lines
919 B
JavaScript
32 lines
919 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 LassoSelect = createLucideIcon("LassoSelect", [
|
|
["path", { d: "M7 22a5 5 0 0 1-2-4", key: "umushi" }],
|
|
["path", { d: "M7 16.93c.96.43 1.96.74 2.99.91", key: "ybbtv3" }],
|
|
[
|
|
"path",
|
|
{
|
|
d: "M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2",
|
|
key: "gt5e1w"
|
|
}
|
|
],
|
|
["path", { d: "M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z", key: "bq3ynw" }],
|
|
[
|
|
"path",
|
|
{
|
|
d: "M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z",
|
|
key: "72q637"
|
|
}
|
|
]
|
|
]);
|
|
|
|
export { LassoSelect as default };
|
|
//# sourceMappingURL=lasso-select.js.map
|