mirror of
https://github.com/Drop-OSS/drop
synced 2026-08-27 14:23:05 -04:00
7 lines
198 B
TypeScript
7 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"),
|
|
]);
|
|
});
|