Files
drop/server/plugins/tasks.ts
2025-05-07 18:50:57 -04:00

8 lines
198 B
TypeScript

export default defineNitroPlugin(async (_nitro) => {
// all tasks we should run on server boot
await Promise.all([
runTask("cleanup:invitations"),
runTask("cleanup:sessions"),
]);
});