import { getStats } from "../../service/scheduler"; import { getJobCount } from "../../scheduler/engine"; export default defineWrappedResponseHandler(async () => { const stats = await getStats(); return R.success({ ...stats, activeJobs: getJobCount(), }); });