mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-03 21:03:08 +00:00
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
439 B
TypeScript
16 lines
439 B
TypeScript
/**
|
|
* Running Agents routes - HTTP API for tracking active agent executions
|
|
*/
|
|
|
|
import { Router } from 'express';
|
|
import type { AutoModeService } from '../../services/auto-mode-service.js';
|
|
import { createIndexHandler } from './routes/index.js';
|
|
|
|
export function createRunningAgentsRoutes(autoModeService: AutoModeService): Router {
|
|
const router = Router();
|
|
|
|
router.get('/', createIndexHandler(autoModeService));
|
|
|
|
return router;
|
|
}
|