- 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>
30 lines
757 B
JavaScript
30 lines
757 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 MapPinned = createLucideIcon("MapPinned", [
|
|
[
|
|
"path",
|
|
{
|
|
d: "M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0",
|
|
key: "11u0oz"
|
|
}
|
|
],
|
|
["circle", { cx: "12", cy: "8", r: "2", key: "1822b1" }],
|
|
[
|
|
"path",
|
|
{
|
|
d: "M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712",
|
|
key: "q8zwxj"
|
|
}
|
|
]
|
|
]);
|
|
|
|
export { MapPinned as default };
|
|
//# sourceMappingURL=map-pinned.js.map
|