fix: eslint error and server plugin name

This commit is contained in:
Huskydog9988
2025-05-07 18:50:21 -04:00
parent 1f510bee57
commit 30b065dde3
2 changed files with 3 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
export default defineNitroPlugin(async (_nitro) => {
// all tasks we should run on server boot
await Promise.all([
runTask("cleanup:invitations"),
runTask("cleanup:sessions"),
]);
});