This commit is contained in:
2026-01-04 17:24:47 +09:00
parent d1db71de61
commit a87c11597a
59 changed files with 15057 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { getSchedulerStatus } from '../../utils/report-scheduler'
/**
* 스케줄러 상태 조회
* GET /api/scheduler/status
*/
export default defineEventHandler(async () => {
return getSchedulerStatus()
})