📦 EqualifyEverything / equalify-api

📄 scheduled.ts · 8 lines
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();
    }
}