feat: ghetto durable compute

This commit is contained in:
Mythie
2024-05-16 15:44:39 +10:00
parent 61827ad729
commit 991f808890
20 changed files with 847 additions and 151 deletions

View File

@ -1 +1,6 @@
export * from './send-confirmation-email';
import type { JobClient } from '../client/client';
import { registerSendConfirmationEmailJob } from './send-confirmation-email';
export const registerJobs = (client: JobClient) => {
registerSendConfirmationEmailJob(client);
};