1 2 3 4 5 6 7 8import { runEveryMinute } from '#src/scheduled/index'; export const scheduled = async (event) => { if (event.path.endsWith('/runEveryMinute')) { return runEveryMinute(); } }
1 2 3 4 5 6 7 8
import { runEveryMinute } from '#src/scheduled/index'; export const scheduled = async (event) => { if (event.path.endsWith('/runEveryMinute')) { return runEveryMinute(); } }