Add new cron service, useful in dev to automatically run scheduled tasks and can be used in single-server deployments to avoid an external dependency

This commit is contained in:
Tom Moor
2023-04-26 22:14:10 -04:00
parent 217d41332f
commit 4f019b7a99
3 changed files with 27 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
import admin from "./admin";
import collaboration from "./collaboration";
import cron from "./cron";
import web from "./web";
import websockets from "./websockets";
import worker from "./worker";
@@ -10,4 +11,5 @@ export default {
admin,
web,
worker,
cron,
};